Skip to content

Commit

Permalink
Merge branch '4.4' into 5.4
Browse files Browse the repository at this point in the history
* 4.4:
  [Ldap] Do not run ldap_set_option on failed connection
  Correct compare float data
  Fix AbstractFormLoginAuthenticator return types (fixes #47571).
  Run composer with --ignore-platform-req=php+
  [FrameworkBundle] Fix a phpdoc in mailer assertions
  • Loading branch information
nicolas-grekas committed Sep 28, 2022
2 parents 64c83d2 + f199eb1 commit 83f647f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Authenticator/AbstractFormLoginAuthenticator.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Security\Core\Exception\AuthenticationException;
use Symfony\Component\Security\Core\Security;
use Symfony\Component\Security\Guard\AbstractGuardAuthenticator;
Expand All @@ -36,7 +37,7 @@ abstract protected function getLoginUrl();
/**
* Override to change what happens after a bad username/password is submitted.
*
* @return RedirectResponse
* @return Response
*/
public function onAuthenticationFailure(Request $request, AuthenticationException $exception)
{
Expand All @@ -58,7 +59,7 @@ public function supportsRememberMe()
* Override to control what happens when the user hits a secure page
* but isn't logged in yet.
*
* @return RedirectResponse
* @return Response
*/
public function start(Request $request, AuthenticationException $authException = null)
{
Expand Down

0 comments on commit 83f647f

Please sign in to comment.