UnknownSec Bypass
403
:
/
var
/
www
/
zenithentcare
/
vendor
/
kreait
/
firebase-php
/
src
/
Firebase
/
RemoteConfig
/ [
drwxrwxr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
DefaultValue.php
<?php declare(strict_types=1); namespace Kreait\Firebase\RemoteConfig; class DefaultValue implements \JsonSerializable { public const IN_APP_DEFAULT_VALUE = true; /** @var string|bool */ private $value; /** * @param string|bool $value */ private function __construct($value) { $this->value = \is_string($value) ? $value : true; } public static function none(): self { return new self(self::IN_APP_DEFAULT_VALUE); } public static function with(string $value): self { return new self($value); } /** * @param array<string, string|null> $data */ public static function fromArray(array $data): self { return new self($data['value'] ?? $data['useInAppDefault'] ?? true); } /** * @return array<string, string|bool> */ public function jsonSerialize(): array { $key = $this->value === true ? 'useInAppDefault' : 'value'; return [$key => $this->value]; } }
Copyright © 2025 - UnknownSec