diff options
author | Dariusz Rumiński <dariusz.ruminski@gmail.com> | 2014-12-08 18:42:24 +0100 |
---|---|---|
committer | Dariusz Rumiński <dariusz.ruminski@gmail.com> | 2014-12-09 19:18:22 +0100 |
commit | 9b949283bf2eda8a49a8771eae8e1618515f9358 (patch) | |
tree | 52ee944c8ae3b662bfd7a0b5bca0c84f8b226620 | |
parent | 56293f4fe279688891cf6e4f99f381703c4b0c6e (diff) | |
download | symfony-security-9b949283bf2eda8a49a8771eae8e1618515f9358.zip symfony-security-9b949283bf2eda8a49a8771eae8e1618515f9358.tar.gz symfony-security-9b949283bf2eda8a49a8771eae8e1618515f9358.tar.bz2 |
fix phpdoc's alignment
-rw-r--r-- | Core/Authentication/Provider/AuthenticationProviderInterface.php | 16 |
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); } |