1 | <?php |
||
12 | class RefreshTokenRepository implements RefreshTokenRepositoryInterface |
||
13 | { |
||
14 | /** |
||
15 | * {@inheritdoc} |
||
16 | */ |
||
17 | public function getNewRefreshToken() |
||
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | public function persistNewRefreshToken(RefreshTokenEntityInterface $refreshTokenEntity) |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | public function revokeRefreshToken($tokenId) |
||
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | public function isRefreshTokenRevoked($tokenId) |
||
49 | } |
||
50 |