OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
kreait
/
firebase-php
/
src
/
Firebase
/
Contract
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:35:39 AM
rwxr-xr-x
📄
Auth.php
17.17 KB
08/12/2024 10:35:37 AM
rw-r--r--
📄
Database.php
1.99 KB
08/12/2024 10:35:37 AM
rw-r--r--
📄
DynamicLinks.php
2.06 KB
08/12/2024 10:35:37 AM
rw-r--r--
📄
Firestore.php
200 bytes
08/12/2024 10:35:37 AM
rw-r--r--
📄
Messaging.php
4.36 KB
08/12/2024 10:35:37 AM
rw-r--r--
📄
RemoteConfig.php
2.18 KB
08/12/2024 10:35:37 AM
rw-r--r--
📄
Storage.php
298 bytes
08/12/2024 10:35:37 AM
rw-r--r--
Editing: RemoteConfig.php
Close
<?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; }