diff options
author | Johannes Schmitt <schmittjoh@gmail.com> | 2011-03-18 18:26:55 +0100 |
---|---|---|
committer | Johannes Schmitt <schmittjoh@gmail.com> | 2011-03-18 20:20:19 +0100 |
commit | 0fb9858262e4f29e6b600410454934173b74df68 (patch) | |
tree | 7e959643be271dd75ea9a50e442cda9aee6f9ac4 /Http/Authentication/AuthenticationSuccessHandlerInterface.php | |
parent | 66ddc5d30f049972a4ce9ba4b1f1c0206bd78ee9 (diff) | |
download | symfony-security-0fb9858262e4f29e6b600410454934173b74df68.zip symfony-security-0fb9858262e4f29e6b600410454934173b74df68.tar.gz symfony-security-0fb9858262e4f29e6b600410454934173b74df68.tar.bz2 |
[Security] removed un-needed event parameter from many interfaces
Diffstat (limited to 'Http/Authentication/AuthenticationSuccessHandlerInterface.php')
-rw-r--r-- | Http/Authentication/AuthenticationSuccessHandlerInterface.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Http/Authentication/AuthenticationSuccessHandlerInterface.php b/Http/Authentication/AuthenticationSuccessHandlerInterface.php index 0af47c9..4cdd976 100644 --- a/Http/Authentication/AuthenticationSuccessHandlerInterface.php +++ b/Http/Authentication/AuthenticationSuccessHandlerInterface.php @@ -2,7 +2,6 @@ namespace Symfony\Component\Security\Http\Authentication; -use Symfony\Component\HttpKernel\Event\GetResponseEvent; use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; use Symfony\Component\HttpFoundation\Request; @@ -22,12 +21,10 @@ interface AuthenticationSuccessHandlerInterface * is 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 TokenInterface $token * * @return Response the response to return */ - function onAuthenticationSuccess(GetResponseEvent $event, Request $request, TokenInterface $token); + function onAuthenticationSuccess(Request $request, TokenInterface $token); }
\ No newline at end of file |