| 1 | <?php |
||
| 13 | class AccessTokenRepository implements AccessTokenRepositoryInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * {@inheritdoc} |
||
| 17 | */ |
||
| 18 | public function getNewToken(ClientEntityInterface $clientEntity, array $scopes, $userIdentifier = null) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | public function persistNewAccessToken(AccessTokenEntityInterface $accessTokenEntity) |
||
| 34 | |||
| 35 | /** |
||
| 36 | * {@inheritdoc} |
||
| 37 | */ |
||
| 38 | public function revokeAccessToken($tokenId) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * {@inheritdoc} |
||
| 45 | */ |
||
| 46 | public function isAccessTokenRevoked($tokenId) |
||
| 50 | } |
||
| 51 |