OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
kreait
/
firebase-tokens
/
src
/
Firebase
/
Auth
/
Token
/
Exception
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:36:42 AM
rwxr-xr-x
📄
ExpiredToken.php
575 bytes
08/12/2024 10:36:42 AM
rw-r--r--
📄
InvalidSignature.php
434 bytes
08/12/2024 10:36:42 AM
rw-r--r--
📄
InvalidToken.php
609 bytes
08/12/2024 10:36:42 AM
rw-r--r--
📄
IssuedInTheFuture.php
655 bytes
08/12/2024 10:36:42 AM
rw-r--r--
📄
UnknownKey.php
477 bytes
08/12/2024 10:36:42 AM
rw-r--r--
Editing: UnknownKey.php
Close
<?php declare(strict_types=1); namespace Firebase\Auth\Token\Exception; use Lcobucci\JWT\Token; class UnknownKey extends InvalidToken { private string $keyId; public function __construct(Token $token, string $keyId) { parent::__construct($token, \sprintf('A key with ID "%s" could not be found.', $keyId)); $this->keyId = $keyId; } public function getKeyId(): string { return $this->keyId; } }