Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
34 | public function it_clears_invalid_refresh_tokens(InputInterface $input, OutputInterface $output, RefreshTokenManagerInterface $refreshTokenManager, RefreshTokenInterface $revokedToken) |
||
35 | { |
||
36 | $refreshTokenManager->revokeAllInvalid(Argument::any())->shouldBeCalled()->willReturn(array($revokedToken)); |
||
37 | |||
38 | $output->writeln(Argument::any())->shouldBeCalled(); |
||
39 | |||
40 | $this->run($input, $output); |
||
41 | } |
||
42 | } |
||
43 |