OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
lcobucci
/
jwt
/
src
/
Token
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:34:17 AM
rwxr-xr-x
📄
Builder.php
3.75 KB
08/12/2024 10:34:17 AM
rw-r--r--
📄
DataSet.php
922 bytes
08/12/2024 10:34:17 AM
rw-r--r--
📄
InvalidTokenStructure.php
664 bytes
08/12/2024 10:34:17 AM
rw-r--r--
📄
Parser.php
4.19 KB
08/12/2024 10:34:17 AM
rw-r--r--
📄
Plain.php
2.32 KB
08/12/2024 10:34:17 AM
rw-r--r--
📄
RegisteredClaimGiven.php
583 bytes
08/12/2024 10:34:17 AM
rw-r--r--
📄
RegisteredClaims.php
1.91 KB
08/12/2024 10:34:17 AM
rw-r--r--
📄
Signature.php
643 bytes
08/12/2024 10:34:17 AM
rw-r--r--
📄
UnsupportedHeaderFound.php
348 bytes
08/12/2024 10:34:17 AM
rw-r--r--
Editing: InvalidTokenStructure.php
Close
<?php declare(strict_types=1); namespace Lcobucci\JWT\Token; use InvalidArgumentException; use Lcobucci\JWT\Exception; final class InvalidTokenStructure extends InvalidArgumentException implements Exception { public static function missingOrNotEnoughSeparators(): self { return new self('The JWT string must have two dots'); } public static function arrayExpected(string $part): self { return new self($part . ' must be an array'); } public static function dateIsNotParseable(string $value): self { return new self('Value is not in the allowed date format: ' . $value); } }