<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
class AuthentificationController extends AbstractController
{
/**
* @Route("/connexion", name="app_connexion")
*/
public function connexion(AuthenticationUtils $authenticationUtils): Response
{
// get the login error if there is one
$error = $authenticationUtils->getLastAuthenticationError();
// last username entered by the user
$lastUsername = $authenticationUtils->getLastUsername();
return $this->render('authentification/connexion.html.twig', [
'last_username' => $lastUsername,
'error' => $error,
]);
}
/**
* @Route("/deconnexion", name="app_deconnexion")
*/
public function deconnexion()
{
// controller can be blank: it will never be called!
dump("logout");
// throw new \Exception('Don\'t forget to activate logout in security.yaml');
return new Response();
}
}