1 | <?php |
||
8 | class MockRefreshTokenStorage extends MockStorage implements RefreshTokenInterface |
||
9 | { |
||
10 | /** |
||
11 | * @inheritdoc |
||
12 | */ |
||
13 | public function get($token) |
||
17 | |||
18 | /** |
||
19 | * @inheritdoc |
||
20 | */ |
||
21 | public function create($token, $expireTime, $accessToken) |
||
25 | |||
26 | /** |
||
27 | * @inheritdoc |
||
28 | */ |
||
29 | public function delete(RefreshTokenEntity $token) |
||
32 | } |
||
33 |