summaryrefslogtreecommitdiffstats
path: root/Core/Authentication/AuthenticationTrustResolverInterface.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/AuthenticationTrustResolverInterface.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/AuthenticationTrustResolverInterface.php')
-rw-r--r--Core/Authentication/AuthenticationTrustResolverInterface.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/Core/Authentication/AuthenticationTrustResolverInterface.php b/Core/Authentication/AuthenticationTrustResolverInterface.php
index ac07db0..03b48e9 100644
--- a/Core/Authentication/AuthenticationTrustResolverInterface.php
+++ b/Core/Authentication/AuthenticationTrustResolverInterface.php
@@ -28,7 +28,7 @@ interface AuthenticationTrustResolverInterface
*
* @param TokenInterface $token
*
- * @return Boolean
+ * @return bool
*/
public function isAnonymous(TokenInterface $token = null);
@@ -38,7 +38,7 @@ interface AuthenticationTrustResolverInterface
*
* @param TokenInterface $token
*
- * @return Boolean
+ * @return bool
*/
public function isRememberMe(TokenInterface $token = null);
@@ -47,7 +47,7 @@ interface AuthenticationTrustResolverInterface
*
* @param TokenInterface $token
*
- * @return Boolean
+ * @return bool
*/
public function isFullFledged(TokenInterface $token = null);
}