1 | <?php |
||
12 | class AccessTokenRepository |
||
13 | { |
||
14 | /** |
||
15 | * {@inheritdoc} |
||
16 | */ |
||
17 | public function persistNewAccessToken(AccessTokenEntityInterface $accessTokenEntity) |
||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | public function revokeAccessToken($tokenId) |
||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | public function isAccessTokenRevoked($tokenId) |
||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function getNewToken(ClientEntityInterface $clientEntity, array $scopes, $userIdentifier = null) |
||
48 | } |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.