HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpmuhibbah_err/wp-content/plugins/give/src/Donations/Properties/BillingAddress.php
<?php

namespace Give\Donations\Properties;

use Give\Framework\Support\Contracts\Arrayable;
use JsonSerializable;

/**
 * @since 3.20.0 added JsonSerializable an Arrayable
 * @since 2.19.6
 */
final class BillingAddress implements JsonSerializable, Arrayable
{
    /**
     * @var string
     */
    public $country;
    /**
     * @var string
     */
    public $address1;
    /**
     * @var string
     */
    public $address2;
    /**
     * @var string
     */
    public $city;
    /**
     * @var string
     */
    public $state;
    /**
     * @var string
     */
    public $zip;

    /**
     * @since 2.19.6
     *
     * @param array $array
     *
     * @return BillingAddress
     */
    public static function fromArray($array)
    {
        $self = new static();

        $self->country = $array['country'];
        $self->address1 = $array['address1'];
        $self->address2 = $array['address2'];
        $self->city = $array['city'];
        $self->state = $array['state'];
        $self->zip = $array['zip'];

        return $self;
    }

    /**
     * @since 3.20.0
     */
    public function toArray(): array
    {
        return [
            'country' => $this->country,
            'address1' => $this->address1,
            'address2' => $this->address2,
            'city' => $this->city,
            'state' => $this->state,
            'zip' => $this->zip,
        ];
    }

    /**
     * @since 3.20.0
     */
    #[\ReturnTypeWillChange]
    public function jsonSerialize()
    {
        return $this->toArray();
    }
}