%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/Uid.php |
<?php
declare(strict_types=1);
namespace Kreait\Firebase\Value;
use Kreait\Firebase\Exception\InvalidArgumentException;
class Uid implements \JsonSerializable
{
/** @var string */
private $value;
/**
* @internal
*/
public function __construct(string $value)
{
if ($value === '' || \mb_strlen($value) > 128) {
throw new InvalidArgumentException('A uid must be a non-empty string with at most 128 characters.');
}
$this->value = $value;
}
public function __toString()
{
return $this->value;
}
public function jsonSerialize(): string
{
return $this->value;
}
/**
* @param self|string $other
*/
public function equalsTo($other): bool
{
return $this->value === (string) $other;
}
}