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