diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2010-10-21 17:16:31 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2010-10-21 17:16:31 +0200 |
commit | 5c7ea242ef1b78dcc59740c66a467bd9b5b9215f (patch) | |
tree | 3cfe32b923c39e16fff39cd8eac239c88be6b243 /Authentication/Provider | |
parent | 800e6d20195ecb79d17ee50dd0d3cae0bf72ac78 (diff) | |
download | symfony-security-5c7ea242ef1b78dcc59740c66a467bd9b5b9215f.zip symfony-security-5c7ea242ef1b78dcc59740c66a467bd9b5b9215f.tar.gz symfony-security-5c7ea242ef1b78dcc59740c66a467bd9b5b9215f.tar.bz2 |
fixed interfaces problems
Diffstat (limited to 'Authentication/Provider')
-rw-r--r-- | Authentication/Provider/AnonymousAuthenticationProvider.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Authentication/Provider/AnonymousAuthenticationProvider.php b/Authentication/Provider/AnonymousAuthenticationProvider.php index 8e336ee..091bca1 100644 --- a/Authentication/Provider/AnonymousAuthenticationProvider.php +++ b/Authentication/Provider/AnonymousAuthenticationProvider.php @@ -53,7 +53,7 @@ class AnonymousAuthenticationProvider implements AuthenticationProviderInterface /** * {@inheritdoc} */ - public function supports($token) + public function supports(TokenInterface $token) { return $token instanceof AnonymousToken; } |