From c19dc624c735325778222123ef55c8152b104f89 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Wed, 25 Jan 2023 22:12:16 +0100 Subject: [PATCH] feat(upgrade): add compliance with symfony 6.2 --- src/core/Authenticator/LoginFormAuthenticator.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/Authenticator/LoginFormAuthenticator.php b/src/core/Authenticator/LoginFormAuthenticator.php index 193c61f..1b292ea 100644 --- a/src/core/Authenticator/LoginFormAuthenticator.php +++ b/src/core/Authenticator/LoginFormAuthenticator.php @@ -16,10 +16,10 @@ use Symfony\Component\Security\Core\User\UserInterface; use Symfony\Component\Security\Core\User\UserProviderInterface; use Symfony\Component\Security\Csrf\CsrfToken; use Symfony\Component\Security\Csrf\CsrfTokenManagerInterface; -use Symfony\Component\Security\Guard\Authenticator\AbstractFormLoginAuthenticator; use Symfony\Component\Security\Http\Util\TargetPathTrait; +use Symfony\Component\Security\Http\Authenticator\AbstractLoginFormAuthenticator; -class LoginFormAuthenticator extends AbstractFormLoginAuthenticator +class LoginFormAuthenticator extends AbstractLoginFormAuthenticator { use TargetPathTrait;