diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2014-12-08 09:43:12 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-12-08 09:43:12 +0100 |
commit | 56293f4fe279688891cf6e4f99f381703c4b0c6e (patch) | |
tree | 908ca648493938b1911ae803e9ae4dfecd429506 /Core/Authentication | |
parent | 1aaa26cad526c885a0ffd4fcef8a855a63024725 (diff) | |
parent | 16bedc2baf42deacbe8f0a48f311557c7859d3dc (diff) | |
download | symfony-security-56293f4fe279688891cf6e4f99f381703c4b0c6e.zip symfony-security-56293f4fe279688891cf6e4f99f381703c4b0c6e.tar.gz symfony-security-56293f4fe279688891cf6e4f99f381703c4b0c6e.tar.bz2 |
Merge branch '2.3' into 2.5
* 2.3:
fix phpdoc's alignment
Minor phpcs fixes
[ClassLoader] Fix undefined index in ClassCollectionLoader
Conflicts:
src/Symfony/Component/Serializer/Encoder/XmlEncoder.php
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); } |