D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
opt
/
psa
/
admin
/
plib
/
modules
/
wp-toolkit
/
vendor
/
lcobucci
/
jwt
/
src
/
Filename :
Parser.php
back
Copy
<?php declare (strict_types=1); namespace WPToolkitDependenciesIsolationPrefix\Lcobucci\JWT; use WPToolkitDependenciesIsolationPrefix\Lcobucci\JWT\Encoding\CannotDecodeContent; use WPToolkitDependenciesIsolationPrefix\Lcobucci\JWT\Token\InvalidTokenStructure; use WPToolkitDependenciesIsolationPrefix\Lcobucci\JWT\Token\UnsupportedHeaderFound; interface Parser { /** * Parses the JWT and returns a token * * @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; }