diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2014-12-08 09:43:24 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-12-08 09:43:24 +0100 |
commit | c7d59d4cf078674f865f4103cdf23077f6c1af95 (patch) | |
tree | fa35c2fe148b35089d9899e5ec204f06cd88b5a8 /Core/Authentication | |
parent | 42c01236ad91d79608e903005583d4a2d0d3cd7a (diff) | |
parent | 56293f4fe279688891cf6e4f99f381703c4b0c6e (diff) | |
download | symfony-security-c7d59d4cf078674f865f4103cdf23077f6c1af95.zip symfony-security-c7d59d4cf078674f865f4103cdf23077f6c1af95.tar.gz symfony-security-c7d59d4cf078674f865f4103cdf23077f6c1af95.tar.bz2 |
Merge branch '2.5' into 2.6
* 2.5:
Added information when an error occured during validation of an answer of a question
[Console] fixes some typos and phpdoc.
fix phpdoc's alignment
Minor phpcs fixes
[ClassLoader] Fix undefined index in ClassCollectionLoader
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); } |