summaryrefslogtreecommitdiffstats
path: root/Http
diff options
context:
space:
mode:
authorPascal Borreli <pascal@borreli.com>2011-03-01 18:55:12 +0100
committerPascal Borreli <pascal@borreli.com>2011-03-01 18:58:08 +0100
commita45d4a21c023980a2d652234d7068a477a20f6e8 (patch)
treea303ad562f38bd06fc7e37d490834fcfea4b0da0 /Http
parent2112fd92a0f96fe9cbdc975e86dcfab9e6debcf7 (diff)
downloadsymfony-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.php12
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)