1 | <?php |
||
10 | class RefreshTokenAuthenticatorSpec extends ObjectBehavior |
||
11 | { |
||
12 | public function let(UserCheckerInterface $userChecker) |
||
13 | { |
||
14 | $tokenParameterName = 'refresh_token'; |
||
15 | $this->beConstructedWith($userChecker, $tokenParameterName); |
||
16 | } |
||
17 | |||
18 | public function it_is_initializable() |
||
22 | |||
23 | public function it_get_credentials(Request $request) |
||
27 | |||
28 | public function it_fails_on_authentication(Request $request, AuthenticationException $exception) |
||
32 | } |
||
33 |