Total Complexity | 7 |
Total Lines | 47 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
10 | final class CognitoUserProvider implements UserProvider |
||
11 | { |
||
12 | private $parser; |
||
13 | |||
14 | private $factory; |
||
15 | |||
16 | 4 | public function __construct(TokenParser $parser, UserFactory $factory) |
|
20 | } |
||
21 | |||
22 | 4 | public function retrieveByCredentials(array $credentials) |
|
37 | } |
||
38 | |||
39 | /** @phpstan ignore */ |
||
40 | public function validateCredentials(Authenticatable $user, array $credentials) |
||
42 | } |
||
43 | |||
44 | /** @phpstan ignore */ |
||
45 | public function retrieveById($identifier) |
||
46 | { |
||
47 | } |
||
48 | |||
49 | /** @phpstan ignore */ |
||
50 | public function retrieveByToken($identifier, $token) |
||
52 | } |
||
53 | |||
54 | /** @phpstan ignore */ |
||
55 | public function updateRememberToken(Authenticatable $user, $token) |
||
59 |