diff --git a/src/src/Controller/SecurityController.php b/src/src/Controller/SecurityController.php index b6f3dfc..82ae368 100644 --- a/src/src/Controller/SecurityController.php +++ b/src/src/Controller/SecurityController.php @@ -21,7 +21,7 @@ public function __construct( #[Route('/login', name: 'app_login')] public function login(AuthenticationUtils $authenticationUtils): Response { - if ($this->isGranted("IS_AUTHENTICATED_FULLY")) { + if ($this->isGranted('IS_AUTHENTICATED_FULLY')) { return $this->redirectToRoute('home'); }