%PDF- %PDF-
| Direktori : /home/graphicd/public_html/vebto/vendor/kreait/firebase-php/src/Firebase/Contract/ |
| Current File : /home/graphicd/public_html/vebto/vendor/kreait/firebase-php/src/Firebase/Contract/RemoteConfig.php |
<?php
declare(strict_types=1);
namespace Kreait\Firebase\Contract;
use Kreait\Firebase\Exception\RemoteConfig\ValidationFailed;
use Kreait\Firebase\Exception\RemoteConfig\VersionNotFound;
use Kreait\Firebase\Exception\RemoteConfigException;
use Kreait\Firebase\RemoteConfig\FindVersions;
use Kreait\Firebase\RemoteConfig\Template;
use Kreait\Firebase\RemoteConfig\Version;
use Kreait\Firebase\RemoteConfig\VersionNumber;
use Traversable;
/**
* The Firebase Remote Config.
*
* @see https://firebase.google.com/docs/remote-config/use-config-rest
* @see https://firebase.google.com/docs/remote-config/rest-reference
*/
interface RemoteConfig
{
/**
* @throws RemoteConfigException if something went wrong
*/
public function get(): Template;
/**
* Validates the given template without publishing it.
*
* @param Template|array<string, mixed> $template
*
* @throws ValidationFailed if the validation failed
* @throws RemoteConfigException
*/
public function validate($template): void;
/**
* @param Template|array<string, mixed> $template
*
* @throws RemoteConfigException
*
* @return string The etag value of the published template that can be compared to in later calls
*/
public function publish($template): string;
/**
* Returns a version with the given number.
*
* @param VersionNumber|int|string $versionNumber
*
* @throws VersionNotFound
* @throws RemoteConfigException if something went wrong
*/
public function getVersion($versionNumber): Version;
/**
* Returns a version with the given number.
*
* @param VersionNumber|int|string $versionNumber
*
* @throws VersionNotFound
* @throws RemoteConfigException if something went wrong
*/
public function rollbackToVersion($versionNumber): Template;
/**
* @param FindVersions|array<string, mixed>|null $query
*
* @throws RemoteConfigException if something went wrong
*
* @return Traversable<Version>|Version[]
*/
public function listVersions($query = null): Traversable;
}