summaryrefslogtreecommitdiffstats
path: root/Core/Authentication
diff options
context:
space:
mode:
authorGraham Campbell <graham@mineuk.com>2014-12-09 12:18:23 +0000
committerGraham Campbell <graham@mineuk.com>2014-12-09 12:18:23 +0000
commit9639dbed9bd1b36606b944e6a9ad24e92d76f4da (patch)
tree91f2dd83573151f541de4c4a8a522a489932747e /Core/Authentication
parent16bedc2baf42deacbe8f0a48f311557c7859d3dc (diff)
downloadsymfony-security-9639dbed9bd1b36606b944e6a9ad24e92d76f4da.zip
symfony-security-9639dbed9bd1b36606b944e6a9ad24e92d76f4da.tar.gz
symfony-security-9639dbed9bd1b36606b944e6a9ad24e92d76f4da.tar.bz2
Fixed the AuthenticationProviderInterface alignment
Diffstat (limited to 'Core/Authentication')
-rw-r--r--Core/Authentication/Provider/AuthenticationProviderInterface.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/Core/Authentication/Provider/AuthenticationProviderInterface.php b/Core/Authentication/Provider/AuthenticationProviderInterface.php
index 8007234..adad258 100644
--- a/Core/Authentication/Provider/AuthenticationProviderInterface.php
+++ b/Core/Authentication/Provider/AuthenticationProviderInterface.php
@@ -24,12 +24,12 @@ use Symfony\Component\Security\Core\Authentication\AuthenticationManagerInterfac
*/
interface AuthenticationProviderInterface extends AuthenticationManagerInterface
{
- /**
- * Checks whether this provider supports the given token.
- *
- * @param TokenInterface $token A TokenInterface instance
- *
- * @return bool true if the implementation supports the Token, false otherwise
- */
- public function supports(TokenInterface $token);
+ /**
+ * Checks whether this provider supports the given token.
+ *
+ * @param TokenInterface $token A TokenInterface instance
+ *
+ * @return bool true if the implementation supports the Token, false otherwise
+ */
+ public function supports(TokenInterface $token);
}