OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
kreait
/
firebase-php
/
src
/
Firebase
/
Exception
/
Auth
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:36:28 AM
rwxr-xr-x
📄
ApiConnectionFailed.php
242 bytes
08/12/2024 10:36:27 AM
rw-r--r--
📄
AuthError.php
803 bytes
08/12/2024 10:36:27 AM
rw-r--r--
📄
CredentialsMismatch.php
242 bytes
08/12/2024 10:36:27 AM
rw-r--r--
📄
EmailExists.php
234 bytes
08/12/2024 10:36:27 AM
rw-r--r--
📄
EmailNotFound.php
236 bytes
08/12/2024 10:36:27 AM
rw-r--r--
📄
ExpiredOobCode.php
237 bytes
08/12/2024 10:36:27 AM
rw-r--r--
📄
InvalidCustomToken.php
241 bytes
08/12/2024 10:36:27 AM
rw-r--r--
📄
InvalidOobCode.php
237 bytes
08/12/2024 10:36:27 AM
rw-r--r--
📄
InvalidPassword.php
238 bytes
08/12/2024 10:36:27 AM
rw-r--r--
📄
MissingPassword.php
238 bytes
08/12/2024 10:36:27 AM
rw-r--r--
📄
OperationNotAllowed.php
242 bytes
08/12/2024 10:36:27 AM
rw-r--r--
📄
PhoneNumberExists.php
240 bytes
08/12/2024 10:36:27 AM
rw-r--r--
📄
ProviderLinkFailed.php
241 bytes
08/12/2024 10:36:27 AM
rw-r--r--
📄
RevokedIdToken.php
688 bytes
08/12/2024 10:36:27 AM
rw-r--r--
📄
UserDisabled.php
235 bytes
08/12/2024 10:36:27 AM
rw-r--r--
📄
UserNotFound.php
235 bytes
08/12/2024 10:36:27 AM
rw-r--r--
📄
WeakPassword.php
235 bytes
08/12/2024 10:36:27 AM
rw-r--r--
Editing: AuthError.php
Close
<?php declare(strict_types=1); namespace Kreait\Firebase\Exception\Auth; use Kreait\Firebase\Exception\AuthException; use Kreait\Firebase\Factory; use RuntimeException; final class AuthError extends RuntimeException implements AuthException { public static function missingProjectId(string $message): self { $factoryClass = Factory::class; $fullMessage = <<<MSG {$message} The current Firebase project is configured without a project ID. The project ID can be determined automatically with service account credentials, by providing a `GOOGLE_CLOUD_PROJECT=project_id` environment variable, or manually by using the respective method when instantiating the SDK's factory ({$factoryClass}). MSG; return new self($fullMessage); } }