1 | <?php |
||
17 | class AccessTokenRepository implements AccessTokenRepositoryInterface |
||
18 | { |
||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | public function persistNewAccessToken(AccessTokenEntityInterface $accessTokenEntity) |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | public function revokeAccessToken($tokenId) |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function isAccessTokenRevoked($tokenId) |
||
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | public function getNewToken(ClientEntityInterface $clientEntity, array $scopes, $userIdentifier = null) |
||
57 | } |
||
58 |