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