%PDF- %PDF-
| Direktori : /home/graphicd/public_html/vebto/vendor/kreait/firebase-php/src/Firebase/Auth/ |
| Current File : /home/graphicd/public_html/vebto/vendor/kreait/firebase-php/src/Firebase/Auth/TenantId.php |
<?php
declare(strict_types=1);
namespace Kreait\Firebase\Auth;
final class TenantId
{
/** @var string */
private $value;
private function __construct()
{
}
public static function fromString(string $value): self
{
$id = new self();
$id->value = $value;
return $id;
}
public function toString(): string
{
return $this->value;
}
}