for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* SecurityController Controller of App security.
*
* PHP Version 7
* @author Quétier Laurent <[email protected]>
* @copyright 2018 Dev-Int GLSR
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version GIT: $Id$
* @see https://github.com/Dev-Int/glsr
*/
namespace App\Controller;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
class SecurityController extends AbstractController
{
* @Route("/login", name="app_login", methods={"GET"})
public function login(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('security/login.html.twig', [
'last_username' => $lastUsername,
'error' => $error
]);
}
* @Route("/logout", name="app_logout", methods={"GET"})
public function logout()
throw new \Exception('Don\'t forget to activate logout in security.yaml');