JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "ParameterValue.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/kreait/firebase-php/src/Firebase/RemoteConfig/ParameterValue.php
File size: 2.95 KB
MIME-type: text/x-php
Charset: utf-8
<?php
declare(strict_types=1);
namespace Kreait\Firebase\RemoteConfig;
use JsonSerializable;
use function array_key_exists;
/**
* @phpstan-import-type RemoteConfigPersonalizationValueShape from PersonalizationValue
* @phpstan-import-type RemoteConfigRolloutValueShape from RolloutValue
*
* @phpstan-type RemoteConfigParameterValueShape array{
* value?: string,
* useInAppDefault?: bool,
* personalizationValue?: RemoteConfigPersonalizationValueShape,
* rolloutValue?: RemoteConfigRolloutValueShape
* }
*
* @see https://firebase.google.com/docs/reference/remote-config/rest/v1/RemoteConfig#remoteconfigparametervalue
*/
final class ParameterValue implements JsonSerializable
{
private function __construct(
private readonly ?string $value = null,
private readonly ?bool $useInAppDefault = null,
private readonly ?PersonalizationValue $personalizationValue = null,
private readonly ?RolloutValue $rolloutValue = null,
) {
}
public static function withValue(string $value): self
{
return new self(value: $value);
}
public static function inAppDefault(): self
{
return new self(useInAppDefault: true);
}
public static function withPersonalizationValue(PersonalizationValue $value): self
{
return new self(personalizationValue: $value);
}
public static function withRolloutValue(RolloutValue $value): self
{
return new self(rolloutValue: $value);
}
/**
* @param RemoteConfigParameterValueShape $data
*/
public static function fromArray(array $data): self
{
if (array_key_exists('value', $data)) {
return self::withValue($data['value']);
}
if (array_key_exists('useInAppDefault', $data)) {
return self::inAppDefault();
}
if (array_key_exists('personalizationValue', $data)) {
return self::withPersonalizationValue(PersonalizationValue::fromArray($data['personalizationValue']));
}
if (array_key_exists('rolloutValue', $data)) {
return self::withRolloutValue(RolloutValue::fromArray($data['rolloutValue']));
}
return new self();
}
/**
* @return RemoteConfigParameterValueShape
*/
public function toArray(): array
{
if ($this->value !== null) {
return ['value' => $this->value];
}
if ($this->useInAppDefault !== null) {
return ['useInAppDefault' => $this->useInAppDefault];
}
if ($this->personalizationValue !== null) {
return ['personalizationValue' => $this->personalizationValue->toArray()];
}
if ($this->rolloutValue !== null) {
return ['rolloutValue' => $this->rolloutValue->toArray()];
}
return [];
}
/**
* @return RemoteConfigParameterValueShape
*/
public function jsonSerialize(): array
{
return $this->toArray();
}
}