1 | <?php declare(strict_types = 1); |
||
14 | class JwtAuthenticatedToken extends AbstractToken |
||
15 | { |
||
16 | /** |
||
17 | * @param UserInterface $user |
||
18 | */ |
||
19 | public function __construct(UserInterface $user) |
||
27 | |||
28 | /** |
||
29 | * Always returns empty string |
||
30 | * |
||
31 | * @return string |
||
32 | */ |
||
33 | public function getCredentials() |
||
37 | } |