summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDariusz Rumiński <dariusz.ruminski@gmail.com>2014-12-08 18:42:24 +0100
committerDariusz Rumiński <dariusz.ruminski@gmail.com>2014-12-09 19:18:22 +0100
commit9b949283bf2eda8a49a8771eae8e1618515f9358 (patch)
tree52ee944c8ae3b662bfd7a0b5bca0c84f8b226620
parent56293f4fe279688891cf6e4f99f381703c4b0c6e (diff)
downloadsymfony-security-9b949283bf2eda8a49a8771eae8e1618515f9358.zip
symfony-security-9b949283bf2eda8a49a8771eae8e1618515f9358.tar.gz
symfony-security-9b949283bf2eda8a49a8771eae8e1618515f9358.tar.bz2
fix phpdoc's alignment
-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);
}