summaryrefslogtreecommitdiffstats
path: root/Core/Authentication/AuthenticationTrustResolverInterface.php
diff options
context:
space:
mode:
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 adcef3c..ac07db0 100644
--- a/Core/Authentication/AuthenticationTrustResolverInterface.php
+++ b/Core/Authentication/AuthenticationTrustResolverInterface.php
@@ -30,7 +30,7 @@ interface AuthenticationTrustResolverInterface
*
* @return Boolean
*/
- function isAnonymous(TokenInterface $token = null);
+ public function isAnonymous(TokenInterface $token = null);
/**
* Resolves whether the passed token implementation is authenticated
@@ -40,7 +40,7 @@ interface AuthenticationTrustResolverInterface
*
* @return Boolean
*/
- function isRememberMe(TokenInterface $token = null);
+ public function isRememberMe(TokenInterface $token = null);
/**
* Resolves whether the passed token implementation is fully authenticated.
@@ -49,5 +49,5 @@ interface AuthenticationTrustResolverInterface
*
* @return Boolean
*/
- function isFullFledged(TokenInterface $token = null);
+ public function isFullFledged(TokenInterface $token = null);
}