D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
usr
/
local
/
psa
/
admin
/
plib
/
modules
/
grafana
/
vendor
/
lcobucci
/
jwt
/
src
/
Filename :
Parser.php
back
Copy
<?php declare (strict_types=1); namespace PleskGrafana\Lcobucci\JWT; use PleskGrafana\Lcobucci\JWT\Encoding\CannotDecodeContent; use PleskGrafana\Lcobucci\JWT\Token\InvalidTokenStructure; use PleskGrafana\Lcobucci\JWT\Token\UnsupportedHeaderFound; interface Parser { /** * Parses the JWT and returns a token * * @param non-empty-string $jwt * * @throws CannotDecodeContent When something goes wrong while decoding. * @throws InvalidTokenStructure When token string structure is invalid. * @throws UnsupportedHeaderFound When parsed token has an unsupported header. */ public function parse(string $jwt) : Token; }