friendship ended with social-app. php is my new best friend
1<?php
2declare(strict_types=1);
3
4namespace Lcobucci\JWT;
5
6use Lcobucci\JWT\Token\DataSet;
7use Lcobucci\JWT\Token\Signature;
8
9interface UnencryptedToken extends Token
10{
11 /**
12 * Returns the token claims
13 */
14 public function claims(): DataSet;
15
16 /**
17 * Returns the token signature
18 */
19 public function signature(): Signature;
20
21 /**
22 * Returns the token payload
23 *
24 * @return non-empty-string
25 */
26 public function payload(): string;
27}