diff options
author | Dariusz Rumiński <dariusz.ruminski@gmail.com> | 2014-12-07 19:24:30 +0100 |
---|---|---|
committer | Dariusz Rumiński <dariusz.ruminski@gmail.com> | 2014-12-07 19:24:30 +0100 |
commit | 5f80f9515fbc3afe977fd2bbf4549e2a94edca24 (patch) | |
tree | 773860e9cb1f1eb952f96d1d57949f492d2f1cf7 /Core/Authentication | |
parent | 4d93fe20999aa43de372f053ff9f8ec5a85b6fa5 (diff) | |
download | symfony-security-5f80f9515fbc3afe977fd2bbf4549e2a94edca24.zip symfony-security-5f80f9515fbc3afe977fd2bbf4549e2a94edca24.tar.gz symfony-security-5f80f9515fbc3afe977fd2bbf4549e2a94edca24.tar.bz2 |
fix phpdoc's alignment
Diffstat (limited to 'Core/Authentication')
-rw-r--r-- | Core/Authentication/Provider/AuthenticationProviderInterface.php | 14 |
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); } |