diff options
Diffstat (limited to 'Core/Authentication/AuthenticationTrustResolverInterface.php')
-rw-r--r-- | Core/Authentication/AuthenticationTrustResolverInterface.php | 6 |
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); } |