first commit
This commit is contained in:
13
libraries/vendor/web-token/jwt-core/JWT.php
vendored
Normal file
13
libraries/vendor/web-token/jwt-core/JWT.php
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Jose\Component\Core;
|
||||
|
||||
interface JWT
|
||||
{
|
||||
/**
|
||||
* Returns the payload of the JWT. null is a valid payload (e.g. JWS with detached payload).
|
||||
*/
|
||||
public function getPayload(): ?string;
|
||||
}
|
||||
Reference in New Issue
Block a user