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/ValueObjects/DonorAddress.php
<?php

namespace Give\Donors\ValueObjects;

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

/**
 * @since 4.4.0
 */
final class DonorAddress 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 4.4.0
     *
     * @param array $array
     *
     * @return DonorAddress
     */
    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 4.4.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 4.4.0
     */
    #[\ReturnTypeWillChange]
    public function jsonSerialize()
    {
        return $this->toArray();
    }

    /**
     * @since 4.4.0
     */
    public function toString(): string
    {
        $parts = array_filter([
            $this->address1,
            $this->address2,
            $this->city,
            $this->state,
            $this->zip,
            $this->country,
        ]);

        return implode(', ', $parts);
    }

    /**
     * @since 4.4.0
     */
    public function isEmpty(): bool
    {
        return empty($this->country) &&
               empty($this->address1) &&
               empty($this->address2) &&
               empty($this->city) &&
               empty($this->state) &&
               empty($this->zip);
    }
}