summaryrefslogtreecommitdiffstats
path: root/Authentication/Provider/AuthenticationProviderInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'Authentication/Provider/AuthenticationProviderInterface.php')
-rw-r--r--Authentication/Provider/AuthenticationProviderInterface.php35
1 files changed, 0 insertions, 35 deletions
diff --git a/Authentication/Provider/AuthenticationProviderInterface.php b/Authentication/Provider/AuthenticationProviderInterface.php
deleted file mode 100644
index 843f05c..0000000
--- a/Authentication/Provider/AuthenticationProviderInterface.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-
-/*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Component\Security\Authentication\Provider;
-
-use Symfony\Component\Security\Authentication\Token\TokenInterface;
-use Symfony\Component\Security\Authentication\AuthenticationManagerInterface;
-
-/**
- * AuthenticationProviderInterface is the interface for for all authentication
- * providers.
- *
- * Concrete implementations processes specific Token instances.
- *
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- */
-interface AuthenticationProviderInterface extends AuthenticationManagerInterface
-{
- /**
- * Checks whether this provider supports the given token.
- *
- * @param TokenInterface $token A TokenInterface instance
- *
- * @return Boolean true if the implementation supports the Token, false otherwise
- */
- function supports(TokenInterface $token);
-}