%PDF- %PDF-
| Direktori : /home/graphicd/public_html/vebto/vendor/kreait/firebase-php/src/Firebase/Value/ |
| Current File : /home/graphicd/public_html/vebto/vendor/kreait/firebase-php/src/Firebase/Value/Email.php |
<?php
declare(strict_types=1);
namespace Kreait\Firebase\Value;
use Kreait\Firebase\Exception\InvalidArgumentException;
class Email implements \JsonSerializable
{
/** @var string */
private $value;
/**
* @internal
*/
public function __construct(string $value)
{
if (!\filter_var($value, \FILTER_VALIDATE_EMAIL)) {
throw new InvalidArgumentException('The email address is invalid.');
}
$this->value = $value;
}
public function __toString(): string
{
return $this->value;
}
public function jsonSerialize(): string
{
return $this->value;
}
/**
* @param self|string $other
*/
public function equalsTo($other): bool
{
return $this->value === (string) $other;
}
}