Просмотр файла libarea-0.9/vendor/utopia-php/domains/src/Domains/Contact.php

Размер файла: 1.15Kb
<?php

namespace Utopia\Domains;

class Contact
{
    public function __construct(
        public string $firstname,
        public string $lastname,
        public string $phone,
        public string $email,
        public string $address1,
        public string $address2,
        public string $address3,
        public string $city,
        public string $state,
        public string $country,
        public string $postalcode,
        public string $org,
        public ?string $owner = null,
    ) {
    }

    public function toArray()
    {
        $owner = $this->owner ?? $this->firstname . ' ' . $this->lastname;

        return [
            'firstname' => $this->firstname,
            'lastname' => $this->lastname,
            'phone' => $this->phone,
            'email' => $this->email,
            'address1' => $this->address1,
            'address2' => $this->address2,
            'address3' => $this->address3,
            'city' => $this->city,
            'state' => $this->state,
            'country' => $this->country,
            'postalcode' => $this->postalcode,
            'org' => $this->org,
            'owner' => $owner,
        ];
    }
}