diff options
author | Pascal Borreli <pascal@borreli.com> | 2010-10-19 22:51:35 +0000 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2010-10-20 07:07:54 +0200 |
commit | d323d6d0c4d48a2463fbd582c11cc9a495bcc1e0 (patch) | |
tree | c1fb058e3e108f5eff8a00e67b5ba2c61fe9bb8f /Authentication/Provider | |
parent | e8e3b7636fb777461ddcdf07fd559c9a73456961 (diff) | |
download | symfony-security-d323d6d0c4d48a2463fbd582c11cc9a495bcc1e0.zip symfony-security-d323d6d0c4d48a2463fbd582c11cc9a495bcc1e0.tar.gz symfony-security-d323d6d0c4d48a2463fbd582c11cc9a495bcc1e0.tar.bz2 |
[Security] Fixed typo
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 67671b5..8e336ee 100644 --- a/Authentication/Provider/AnonymousAuthenticationProvider.php +++ b/Authentication/Provider/AnonymousAuthenticationProvider.php @@ -31,7 +31,7 @@ class AnonymousAuthenticationProvider implements AuthenticationProviderInterface */ public function __construct($key) { - $this->key; + $this->key = $key; } /** |