| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | public function login(AuthenticationUtils $authenticationUtils): Response |
||
| 12 | { |
||
| 13 | $error = $authenticationUtils->getLastAuthenticationError(); |
||
| 14 | $lastUsername = $authenticationUtils->getLastUsername(); |
||
| 15 | |||
| 16 | return $this->render('security/login.html.twig', ['last_username' => $lastUsername, 'error' => $error]); |
||
| 17 | } |
||
| 19 |