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: RevokedIdToken.php
Close
<?php declare(strict_types=1); namespace Kreait\Firebase\Exception\Auth; use Kreait\Firebase\Exception\AuthException; use Lcobucci\JWT\Token; use RuntimeException; use Throwable; final class RevokedIdToken extends RuntimeException implements AuthException { private Token $token; public function __construct(Token $token, string $message = '', int $code = 0, ?Throwable $previous = null) { $message = $message ?: 'The Firebase ID token has been revoked.'; parent::__construct($message, $code, $previous); $this->token = $token; } public function getToken(): Token { return $this->token; } }