1 | <?php |
||
16 | class AuthCodeRepository implements AuthCodeRepositoryInterface |
||
17 | { |
||
18 | /** |
||
19 | * {@inheritdoc} |
||
20 | */ |
||
21 | public function persistNewAuthCode(AuthCodeEntityInterface $authCodeEntity) |
||
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | public function revokeAuthCode($codeId) |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | public function isAuthCodeRevoked($codeId) |
||
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | public function getNewAuthCode() |
||
49 | } |
||
50 |