summaryrefslogtreecommitdiffstats
path: root/Http/EntryPoint/RetryAuthenticationEntryPoint.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/RetryAuthenticationEntryPoint.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/RetryAuthenticationEntryPoint.php')
-rw-r--r--Http/EntryPoint/RetryAuthenticationEntryPoint.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/Http/EntryPoint/RetryAuthenticationEntryPoint.php b/Http/EntryPoint/RetryAuthenticationEntryPoint.php
index 5439f19..114d122 100644
--- a/Http/EntryPoint/RetryAuthenticationEntryPoint.php
+++ b/Http/EntryPoint/RetryAuthenticationEntryPoint.php
@@ -16,7 +16,6 @@ use Symfony\Component\Security\Http\EntryPoint\AuthenticationEntryPointInterface
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Request;
-use Symfony\Component\HttpKernel\Event\GetResponseEvent;
/**
* RetryAuthenticationEntryPoint redirects URL based on the configured scheme.
@@ -36,7 +35,7 @@ class RetryAuthenticationEntryPoint implements AuthenticationEntryPointInterface
$this->httpsPort = $httpsPort;
}
- public function start(GetResponseEvent $event, Request $request, AuthenticationException $authException = null)
+ public function start(Request $request, AuthenticationException $authException = null)
{
$scheme = $request->isSecure() ? 'http' : 'https';
if ('http' === $scheme && 80 != $this->httpPort) {