src/Controller/LoginController.php line 18
<?phpnamespace App\Controller;use App\Entity\User;use App\Repository\UserRepository;use LogicException;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Bundle\SecurityBundle\Security;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;class LoginController extends AbstractController{#[Route(path: '/login', name: 'app_login')]public function login(AuthenticationUtils $authenticationUtils, UserRepository $userRepository): Response{if (count($userRepository->findAll()) == 0)return $this->redirectToRoute('app_register');if ($this->getUser())return $this->redirectToRoute('app_home');$error = $authenticationUtils->getLastAuthenticationError();$lastUsername = $authenticationUtils->getLastUsername();return $this->render('security/login.html.twig', ['last_username' => $lastUsername,'error' => $error,'avis_maintenance' => false]);}#[Route(path: '/logout', name: 'app_logout')]public function logout(): void{throw new LogicException('This method can be blank - it will be intercepted by the logout key on your firewall.');}}