OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
kreait
/
firebase-tokens
/
src
/
JWT
/
Action
/
VerifyIdToken
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:36:29 AM
rwxr-xr-x
📄
Handler.php
513 bytes
08/12/2024 10:36:29 AM
rw-r--r--
📄
WithFirebaseJWT.php
5.01 KB
08/12/2024 10:36:29 AM
rw-r--r--
📄
WithHandlerDiscovery.php
1.13 KB
08/12/2024 10:36:29 AM
rw-r--r--
📄
WithLcobucciJWT.php
5.57 KB
08/12/2024 10:36:29 AM
rw-r--r--
📄
WithLcobucciV3JWT.php
719 bytes
08/12/2024 10:36:29 AM
rw-r--r--
Editing: WithLcobucciV3JWT.php
Close
<?php declare(strict_types=1); namespace Kreait\Firebase\JWT\Action\VerifyIdToken; use Kreait\Clock; use Kreait\Firebase\JWT\Action\VerifyIdToken; use Kreait\Firebase\JWT\Contract\Keys; use Kreait\Firebase\JWT\Contract\Token; /** * @deprecated 1.14.0 Use {@see WithLcobucciJWT} instead * @codeCoverageIgnore */ final class WithLcobucciV3JWT implements Handler { private WithLcobucciJWT $handler; public function __construct(string $projectId, Keys $keys, Clock $clock) { $this->handler = new WithLcobucciJWT($projectId, $keys, $clock); } public function handle(VerifyIdToken $action): Token { return $this->handler->handle($action); } }