summaryrefslogtreecommitdiffstats
path: root/Http/Authentication/AuthenticationFailureHandlerInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'Http/Authentication/AuthenticationFailureHandlerInterface.php')
-rw-r--r--Http/Authentication/AuthenticationFailureHandlerInterface.php5
1 files changed, 1 insertions, 4 deletions
diff --git a/Http/Authentication/AuthenticationFailureHandlerInterface.php b/Http/Authentication/AuthenticationFailureHandlerInterface.php
index 02db734..5b619bc 100644
--- a/Http/Authentication/AuthenticationFailureHandlerInterface.php
+++ b/Http/Authentication/AuthenticationFailureHandlerInterface.php
@@ -2,7 +2,6 @@
namespace Symfony\Component\Security\Http\Authentication;
-use Symfony\Component\HttpKernel\Event\GetResponseEvent;
use Symfony\Component\Security\Core\Exception\AuthenticationException;
use Symfony\Component\HttpFoundation\Request;
@@ -22,12 +21,10 @@ interface AuthenticationFailureHandlerInterface
* called by authentication listeners inheriting from
* AbstractAuthenticationListener.
*
- * @param GetResponseEvent $event the "onCoreRequest" event, this event always
- * has the kernel as target
* @param Request $request
* @param AuthenticationException $exception
*
* @return Response the response to return
*/
- function onAuthenticationFailure(GetResponseEvent $event, Request $request, AuthenticationException $exception);
+ function onAuthenticationFailure(Request $request, AuthenticationException $exception);
} \ No newline at end of file