summaryrefslogtreecommitdiffstats
path: root/Core/Authentication/Provider/AuthenticationProviderInterface.php
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2014-04-16 12:30:19 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2014-04-16 12:30:19 +0200
commita6be31fc09c34a308c7a756b39e8a504a822694f (patch)
treeecf7561ca743f0a175d572057834942d4d88a54f /Core/Authentication/Provider/AuthenticationProviderInterface.php
parent74eaf535ddcd6cad834c68e7802cfcb08f400c1e (diff)
downloadsymfony-security-a6be31fc09c34a308c7a756b39e8a504a822694f.zip
symfony-security-a6be31fc09c34a308c7a756b39e8a504a822694f.tar.gz
symfony-security-a6be31fc09c34a308c7a756b39e8a504a822694f.tar.bz2
fixed types in phpdocs
Diffstat (limited to 'Core/Authentication/Provider/AuthenticationProviderInterface.php')
-rw-r--r--Core/Authentication/Provider/AuthenticationProviderInterface.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Authentication/Provider/AuthenticationProviderInterface.php b/Core/Authentication/Provider/AuthenticationProviderInterface.php
index f63a924..23724db 100644
--- a/Core/Authentication/Provider/AuthenticationProviderInterface.php
+++ b/Core/Authentication/Provider/AuthenticationProviderInterface.php
@@ -29,7 +29,7 @@ interface AuthenticationProviderInterface extends AuthenticationManagerInterface
*
* @param TokenInterface $token A TokenInterface instance
*
- * @return Boolean true if the implementation supports the Token, false otherwise
+ * @return bool true if the implementation supports the Token, false otherwise
*/
public function supports(TokenInterface $token);
}