%PDF- %PDF-
Direktori : /home/graphicd/www/vebto/vendor/kreait/firebase-php/src/Firebase/Messaging/ |
Current File : /home/graphicd/www/vebto/vendor/kreait/firebase-php/src/Firebase/Messaging/RegistrationToken.php |
<?php declare(strict_types=1); namespace Kreait\Firebase\Messaging; final class RegistrationToken implements \JsonSerializable { /** @var string */ private $value; private function __construct(string $value) { $this->value = $value; } public static function fromValue(string $value): self { return new self($value); } public function value(): string { return $this->value; } public function __toString(): string { return $this->value; } public function jsonSerialize(): string { return $this->value; } }