File: //home/marketing.cfbon.ru/public_html/vendor/kreait/firebase-php/src/Firebase/RemoteConfig/User.php
<?php
declare(strict_types=1);
namespace Kreait\Firebase\RemoteConfig;
use GuzzleHttp\Psr7\Uri;
use Psr\Http\Message\UriInterface;
/**
 * @phpstan-type RemoteConfigUserShape array{
 *     name?: non-empty-string,
 *     email?: non-empty-string,
 *     imageUrl?: non-empty-string
 * }
 */
final class User
{
    /**
     * @param non-empty-string|null $name
     * @param non-empty-string|null $email
     */
    private function __construct(
        private readonly ?string $name,
        private readonly ?string $email,
        private readonly ?UriInterface $imageUri,
    ) {
    }
    /**
     * @internal
     *
     * @param RemoteConfigUserShape $data
     */
    public static function fromArray(array $data): self
    {
        $imageUrl = $data['imageUrl'] ?? null;
        $imageUri = $imageUrl ? new Uri($imageUrl) : null;
        return new self(
            $data['name'] ?? null,
            $data['email'] ?? null,
            $imageUri,
        );
    }
    /**
     * @return non-empty-string|null
     */
    public function name(): ?string
    {
        return $this->name;
    }
    /**
     * @return non-empty-string|null
     */
    public function email(): ?string
    {
        return $this->email;
    }
    public function imageUri(): ?UriInterface
    {
        return $this->imageUri;
    }
}