summaryrefslogtreecommitdiffstats
path: root/Core/Authentication
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2014-12-08 09:43:24 +0100
committerFabien Potencier <fabien.potencier@gmail.com>2014-12-08 09:43:24 +0100
commitc7d59d4cf078674f865f4103cdf23077f6c1af95 (patch)
treefa35c2fe148b35089d9899e5ec204f06cd88b5a8 /Core/Authentication
parent42c01236ad91d79608e903005583d4a2d0d3cd7a (diff)
parent56293f4fe279688891cf6e4f99f381703c4b0c6e (diff)
downloadsymfony-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.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);
}