src/Controller/SecurityController.php line 28

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\HttpFoundation\Response;
  5. use Symfony\Component\Routing\Annotation\Route;
  6. use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
  7. /**
  8.  * Class SecurityController
  9.  * @package App\Controller
  10.  */
  11. class SecurityController extends AbstractController
  12. {
  13.     /**
  14.      * @Route({
  15.      *     "en": "/login",
  16.      *     "es": "/es/login",
  17.      *     "fr": "/fr/login",
  18.      *     "de": "/de/login",
  19.      *     "ru": "/ru/login"
  20.      * }, name="app_login", priority=500)
  21.      *
  22.      * @param AuthenticationUtils $authenticationUtils
  23.      * @return Response
  24.      */
  25.     public function login(AuthenticationUtils $authenticationUtils): Response
  26.     {
  27.         // if ($this->getUser()) {
  28.         //     return $this->redirectToRoute('target_path');
  29.         // }
  30.         // get the login error if there is one
  31.         $error $authenticationUtils->getLastAuthenticationError();
  32.         // last username entered by the user
  33.         $lastUsername $authenticationUtils->getLastUsername();
  34.         return $this->render('security/login.html.twig', [
  35.             'last_username' => $lastUsername,
  36.             'error' => $error,
  37.         ]);
  38.     }
  39.     /**
  40.      * @Route({
  41.      *     "en": "/logout",
  42.      *     "es": "/es/logout",
  43.      *     "fr": "/fr/logout",
  44.      *     "de": "/de/logout",
  45.      *     "ru": "/ru/logout"
  46.      * }, name="app_logout", priority=500)
  47.      */
  48.     public function logout()
  49.     {
  50.         throw new \LogicException('This method can be blank - it will be intercepted by the logout key on your firewall.');
  51.     }
  52. }