summaryrefslogtreecommitdiffstats
path: root/Http/EntryPoint/AuthenticationEntryPointInterface.php
diff options
context:
space:
mode:
authorJohannes Schmitt <schmittjoh@gmail.com>2011-03-18 18:26:55 +0100
committerJohannes Schmitt <schmittjoh@gmail.com>2011-03-18 18:26:55 +0100
commitdf50cc3b4031f45308ea05f7d40a5327fb8bf295 (patch)
treeef0afd5390b426ef5de123be8017e5b83447e5b2 /Http/EntryPoint/AuthenticationEntryPointInterface.php
parent66ddc5d30f049972a4ce9ba4b1f1c0206bd78ee9 (diff)
downloadsymfony-security-df50cc3b4031f45308ea05f7d40a5327fb8bf295.zip
symfony-security-df50cc3b4031f45308ea05f7d40a5327fb8bf295.tar.gz
symfony-security-df50cc3b4031f45308ea05f7d40a5327fb8bf295.tar.bz2
[Security] removed un-needed event parameter from many interfaces
Diffstat (limited to 'Http/EntryPoint/AuthenticationEntryPointInterface.php')
-rw-r--r--Http/EntryPoint/AuthenticationEntryPointInterface.php8
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);
}