diff options
author | Pascal Borreli <pascal@borreli.com> | 2011-03-01 18:55:12 +0100 |
---|---|---|
committer | Pascal Borreli <pascal@borreli.com> | 2011-03-01 18:58:08 +0100 |
commit | a45d4a21c023980a2d652234d7068a477a20f6e8 (patch) | |
tree | a303ad562f38bd06fc7e37d490834fcfea4b0da0 /Http | |
parent | 2112fd92a0f96fe9cbdc975e86dcfab9e6debcf7 (diff) | |
download | symfony-security-a45d4a21c023980a2d652234d7068a477a20f6e8.zip symfony-security-a45d4a21c023980a2d652234d7068a477a20f6e8.tar.gz symfony-security-a45d4a21c023980a2d652234d7068a477a20f6e8.tar.bz2 |
[Security] Fixed Typo
Diffstat (limited to 'Http')
-rw-r--r-- | Http/RememberMe/TokenBasedRememberMeServices.php | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Http/RememberMe/TokenBasedRememberMeServices.php b/Http/RememberMe/TokenBasedRememberMeServices.php index da5479d..e26ba78 100644 --- a/Http/RememberMe/TokenBasedRememberMeServices.php +++ b/Http/RememberMe/TokenBasedRememberMeServices.php @@ -117,13 +117,15 @@ class TokenBasedRememberMeServices extends RememberMeServices } /** - * Generates the cookie value + * Generates the cookie value. + * + * @param string $class + * @param string $username The username + * @param integer $expires The unixtime when the cookie expires + * @param string $password The encoded password * - * @param strign $class - * @param string $username The username - * @param integer $expires The unixtime when the cookie expires - * @param string $password The encoded password * @throws \RuntimeException if username contains invalid chars + * * @return string */ protected function generateCookieValue($class, $username, $expires, $password) |