Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelestilopetshop.meupet.app
/
vendor
/
kreait
/
firebase-php
/
src
/
Firebase
/
RemoteConfig
/
Editing: UpdateType.php
<?php declare(strict_types=1); namespace Kreait\Firebase\RemoteConfig; final class UpdateType implements \JsonSerializable { public const UNSPECIFIED = 'REMOTE_CONFIG_UPDATE_TYPE_UNSPECIFIED'; public const INCREMENTAL_UPDATE = 'INCREMENTAL_UPDATE'; public const FORCED_UPDATE = 'FORCED_UPDATE'; public const ROLLBACK = 'ROLLBACK'; private string $value; private function __construct(string $value) { $this->value = $value; } public static function fromValue(string $value): self { return new self($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; } }
Save
Cancel