OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
lcobucci
/
jwt
/
src
/
Signer
/
Key
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:35:50 AM
rwxr-xr-x
📄
FileCouldNotBeRead.php
487 bytes
08/12/2024 10:35:50 AM
rw-r--r--
📄
InMemory.php
1.71 KB
08/12/2024 10:35:50 AM
rw-r--r--
📄
LocalFileReference.php
1.25 KB
08/12/2024 10:35:50 AM
rw-r--r--
Editing: FileCouldNotBeRead.php
Close
<?php declare(strict_types=1); namespace Lcobucci\JWT\Signer\Key; use InvalidArgumentException; use Lcobucci\JWT\Exception; use Throwable; final class FileCouldNotBeRead extends InvalidArgumentException implements Exception { public static function onPath(string $path, ?Throwable $cause = null): self { return new self( 'The path "' . $path . '" does not contain a valid key file', 0, $cause ); } }