| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | public function loginJson(AuthenticationUtils $authenticationUtils): Response |
||
| 35 | { |
||
| 36 | $error = $authenticationUtils->getLastAuthenticationError(); |
||
| 37 | $lastUsername = $authenticationUtils->getLastUsername(); |
||
| 38 | |||
| 39 | return $this->render('@ChamiloCore/login.html.twig', [ |
||
| 40 | 'last_username' => $lastUsername, |
||
| 41 | 'error' => $error, |
||
| 42 | ]); |
||
| 45 |