HEX
Server: LiteSpeed
System: Linux server315.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: globfdxw (6114)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/globfdxw/www/wp-content/plugins/give/src/Donors/Actions/UpdateAdminDonorDetails.php
<?php

namespace Give\Donors\Actions;

use Exception;
use Give\Donors\Models\Donor;

/**
 * This class allows us to use the Donor model to update data from the donor profile admin legacy page without adding new code directly to the legacy codebase.
 *
 * @since 3.7.0
 */
class UpdateAdminDonorDetails
{
    /**
     * @since 3.7.0
     *
     * @throws Exception
     */
    public function __invoke(array $args, int $donorId)
    {
        $donor = Donor::find($donorId);
        $donor->phone = $args['give_donor_phone_number'] ?? '';
        $donor->save();
    }
}