diff options
Diffstat (limited to 'Http/EntryPoint/AuthenticationEntryPointInterface.php')
-rw-r--r-- | Http/EntryPoint/AuthenticationEntryPointInterface.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Http/EntryPoint/AuthenticationEntryPointInterface.php b/Http/EntryPoint/AuthenticationEntryPointInterface.php index 3095b5c..9fc3501 100644 --- a/Http/EntryPoint/AuthenticationEntryPointInterface.php +++ b/Http/EntryPoint/AuthenticationEntryPointInterface.php @@ -11,7 +11,6 @@ namespace Symfony\Component\Security\Http\EntryPoint; -use Symfony\Component\HttpKernel\Event\GetResponseEvent; use Symfony\Component\Security\Core\Exception\AuthenticationException; use Symfony\Component\HttpFoundation\Request; @@ -26,9 +25,10 @@ interface AuthenticationEntryPointInterface /** * Starts the authentication scheme. * - * @param GetResponseEvent $event The "onCoreRequest" event - * @param object $request The request that resulted in an AuthenticationException + * @param Request $request The request that resulted in an AuthenticationException * @param AuthenticationException $authException The exception that started the authentication process + * + * @return Response */ - function start(GetResponseEvent $event, Request $request, AuthenticationException $authException = null); + function start(Request $request, AuthenticationException $authException = null); } |