Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | final class LogoutHandler implements LogoutHandlerInterface |
||
|
|||
26 | { |
||
27 | private RefreshTokenStorageInterface $storage; |
||
28 | |||
29 | public function __construct(RefreshTokenStorageInterface $storage) |
||
30 | { |
||
31 | $this->storage = $storage; |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | public function logout(Request $request, Response $response, TokenInterface $token): void |
||
40 | } |
||
41 | } |
||
42 |
This interface has been deprecated. The supplier of the interface has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the interface will be removed and what other interface to use instead.