| Total Complexity | 7 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class AuthManager |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var UserProviderInterface |
||
| 17 | */ |
||
| 18 | private $userProvider; |
||
| 19 | |||
| 20 | public function __construct(UserProviderInterface $userProvider) |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @throws Exception\AuthExceptionInterface |
||
| 27 | */ |
||
| 28 | public function getAuthenticatedUser(string $email, string $password): UserInterface |
||
| 53 |