%PDF- %PDF-
Direktori : /home/graphicd/www/vebto/vendor/kreait/firebase-php/src/Firebase/RemoteConfig/ |
Current File : /home/graphicd/www/vebto/vendor/kreait/firebase-php/src/Firebase/RemoteConfig/UpdateOrigin.php |
<?php declare(strict_types=1); namespace Kreait\Firebase\RemoteConfig; final class UpdateOrigin implements \JsonSerializable { public const UNSPECIFIED = 'REMOTE_CONFIG_UPDATE_ORIGIN_UNSPECIFIED'; public const CONSOLE = 'CONSOLE'; public const REST_API = 'REST_API'; /** @var string */ private $value; private function __construct() { } public static function fromValue(string $value): self { $new = new self(); $new->value = $value; return $new; } 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; } }