summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDariusz Rumiński <dariusz.ruminski@gmail.com>2014-12-07 19:24:30 +0100
committerDariusz Rumiński <dariusz.ruminski@gmail.com>2014-12-07 19:24:30 +0100
commit5f80f9515fbc3afe977fd2bbf4549e2a94edca24 (patch)
tree773860e9cb1f1eb952f96d1d57949f492d2f1cf7
parent4d93fe20999aa43de372f053ff9f8ec5a85b6fa5 (diff)
downloadsymfony-security-5f80f9515fbc3afe977fd2bbf4549e2a94edca24.zip
symfony-security-5f80f9515fbc3afe977fd2bbf4549e2a94edca24.tar.gz
symfony-security-5f80f9515fbc3afe977fd2bbf4549e2a94edca24.tar.bz2
fix phpdoc's alignment
-rw-r--r--Core/Authentication/Provider/AuthenticationProviderInterface.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/Core/Authentication/Provider/AuthenticationProviderInterface.php b/Core/Authentication/Provider/AuthenticationProviderInterface.php
index 401df6d..8007234 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
- */
+ /**
+ * 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);
}