diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2012-07-09 14:50:58 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2012-07-09 14:54:20 +0200 |
commit | 1c06ef124bde94f6b29634801b84ea9fa9149c31 (patch) | |
tree | fa4af2ca5aeb42b2b14cb3a3e8213e0c8b864dce /Core/Authentication/AuthenticationTrustResolverInterface.php | |
parent | f5719bac71c1b44dfdd48ccc9249edfde94c3204 (diff) | |
download | symfony-security-1c06ef124bde94f6b29634801b84ea9fa9149c31.zip symfony-security-1c06ef124bde94f6b29634801b84ea9fa9149c31.tar.gz symfony-security-1c06ef124bde94f6b29634801b84ea9fa9149c31.tar.bz2 |
fixed CS
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 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); } |