diff options
author | Bernhard Schussek <bernhard.schussek@symfony-project.com> | 2011-03-13 19:16:56 +0100 |
---|---|---|
committer | Bernhard Schussek <bernhard.schussek@symfony-project.com> | 2011-03-13 19:49:10 +0100 |
commit | 27a103510af2a2a730937e39db0530b57f9b507a (patch) | |
tree | 7973136ac2d2fccf1b5c79e12d1de6bafaa99935 /Http/EntryPoint/AuthenticationEntryPointInterface.php | |
parent | 263ba4d42870ef5f991540c8b039c2472ba8b204 (diff) | |
download | symfony-security-27a103510af2a2a730937e39db0530b57f9b507a.zip symfony-security-27a103510af2a2a730937e39db0530b57f9b507a.tar.gz symfony-security-27a103510af2a2a730937e39db0530b57f9b507a.tar.bz2 |
Switched from Doctrine's EventManager implementation to the EventManager clone in Symfony2 (now called EventDispatcher again)
Diffstat (limited to 'Http/EntryPoint/AuthenticationEntryPointInterface.php')
-rw-r--r-- | Http/EntryPoint/AuthenticationEntryPointInterface.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Http/EntryPoint/AuthenticationEntryPointInterface.php b/Http/EntryPoint/AuthenticationEntryPointInterface.php index 7d75cbc..0cf6240 100644 --- a/Http/EntryPoint/AuthenticationEntryPointInterface.php +++ b/Http/EntryPoint/AuthenticationEntryPointInterface.php @@ -11,7 +11,7 @@ namespace Symfony\Component\Security\Http\EntryPoint; -use Symfony\Component\HttpKernel\Event\GetResponseEventArgs; +use Symfony\Component\HttpKernel\Event\GetResponseEvent; use Symfony\Component\Security\Core\Exception\AuthenticationException; use Symfony\Component\HttpFoundation\Request; @@ -26,9 +26,9 @@ interface AuthenticationEntryPointInterface /** * Starts the authentication scheme. * - * @param GetResponseEventArgs $eventArgs The "onCoreSecurity" event + * @param GetResponseEvent $event The "onCoreSecurity" event * @param object $request The request that resulted in an AuthenticationException * @param AuthenticationException $authException The exception that started the authentication process */ - function start(GetResponseEventArgs $eventArgs, Request $request, AuthenticationException $authException = null); + function start(GetResponseEvent $event, Request $request, AuthenticationException $authException = null); } |