summaryrefslogtreecommitdiffstats
path: root/Core/Authentication/SimpleAuthenticatorInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'Core/Authentication/SimpleAuthenticatorInterface.php')
-rw-r--r--Core/Authentication/SimpleAuthenticatorInterface.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/Core/Authentication/SimpleAuthenticatorInterface.php b/Core/Authentication/SimpleAuthenticatorInterface.php
index fbbaa37..868d072 100644
--- a/Core/Authentication/SimpleAuthenticatorInterface.php
+++ b/Core/Authentication/SimpleAuthenticatorInterface.php
@@ -12,9 +12,7 @@
namespace Symfony\Component\Security\Core\Authentication;
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
-use Symfony\Component\Security\Core\Exception\AuthenticationException;
use Symfony\Component\Security\Core\User\UserProviderInterface;
-use Symfony\Component\HttpFoundation\Request;
/**
* @author Jordi Boggiano <j.boggiano@seld.be>
@@ -24,8 +22,4 @@ interface SimpleAuthenticatorInterface
public function authenticateToken(TokenInterface $token, UserProviderInterface $userProvider, $providerKey);
public function supportsToken(TokenInterface $token, $providerKey);
-
- public function onAuthenticationFailure(Request $request, AuthenticationException $exception);
-
- public function onAuthenticationSuccess(Request $request, TokenInterface $token);
}