summaryrefslogtreecommitdiffstats
path: root/Core/Authentication
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2013-05-05 18:58:35 +0200
committerJordi Boggiano <j.boggiano@seld.be>2013-05-08 15:02:48 +0200
commita17191f515bb098f083cb02ac280ed96bd5e0b72 (patch)
tree520be125578141a8420cb81ef182fabe2cc630d5 /Core/Authentication
parent5bc6c9f81d2650c6d5ed123ddb8afde33f57bdcf (diff)
downloadsymfony-security-a17191f515bb098f083cb02ac280ed96bd5e0b72.zip
symfony-security-a17191f515bb098f083cb02ac280ed96bd5e0b72.tar.gz
symfony-security-a17191f515bb098f083cb02ac280ed96bd5e0b72.tar.bz2
moved the simple HTTP authenticator to a pre-auth one
Diffstat (limited to 'Core/Authentication')
-rw-r--r--Core/Authentication/SimplePreAuthenticatorInterface.php (renamed from Core/Authentication/SimpleHttpAuthenticatorInterface.php)2
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Authentication/SimpleHttpAuthenticatorInterface.php b/Core/Authentication/SimplePreAuthenticatorInterface.php
index b64aad9..6164e7d 100644
--- a/Core/Authentication/SimpleHttpAuthenticatorInterface.php
+++ b/Core/Authentication/SimplePreAuthenticatorInterface.php
@@ -16,7 +16,7 @@ use Symfony\Component\HttpFoundation\Request;
/**
* @author Jordi Boggiano <j.boggiano@seld.be>
*/
-interface SimpleHttpAuthenticatorInterface extends SimpleAuthenticatorInterface
+interface SimplePreAuthenticatorInterface extends SimpleAuthenticatorInterface
{
public function createToken(Request $request, $providerKey);
}