diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2013-12-27 16:16:38 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2013-12-27 16:16:38 +0100 |
commit | 3bdc91a588daacddd5bf7cacb114143903983ec8 (patch) | |
tree | 81d7f607134fdabfbf145f2cdcad24a4772bd617 | |
parent | 35c3590ba55c63d2684ff849b1f97fd4a688019c (diff) | |
parent | 0edc5ecf02950e5c58df3f259e36e61e13fd11ad (diff) | |
download | symfony-security-3bdc91a588daacddd5bf7cacb114143903983ec8.zip symfony-security-3bdc91a588daacddd5bf7cacb114143903983ec8.tar.gz symfony-security-3bdc91a588daacddd5bf7cacb114143903983ec8.tar.bz2 |
minor #9869 fixed various typos (fabpot)
This PR was merged into the 2.3 branch.
Discussion
----------
fixed various typos
| Q | A
| ------------- | ---
| Bug fix? | no
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Tests pass? | yes
| Fixed tickets | n/a
| License | MIT
| Doc PR | n/a
Commits
-------
2f15ac7 fixed various typos
-rw-r--r-- | Http/RememberMe/TokenBasedRememberMeServices.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Http/RememberMe/TokenBasedRememberMeServices.php b/Http/RememberMe/TokenBasedRememberMeServices.php index 5a66fe4..df0ea1b 100644 --- a/Http/RememberMe/TokenBasedRememberMeServices.php +++ b/Http/RememberMe/TokenBasedRememberMeServices.php @@ -116,7 +116,7 @@ class TokenBasedRememberMeServices extends AbstractRememberMeServices * * @param string $class * @param string $username The username - * @param integer $expires The unixtime when the cookie expires + * @param integer $expires The Unix timestamp when the cookie expires * @param string $password The encoded password * * @throws \RuntimeException if username contains invalid chars @@ -138,7 +138,7 @@ class TokenBasedRememberMeServices extends AbstractRememberMeServices * * @param string $class * @param string $username The username - * @param integer $expires The unixtime when the cookie expires + * @param integer $expires The Unix timestamp when the cookie expires * @param string $password The encoded password * * @throws \RuntimeException when the private key is empty |