diff options
author | Brikou CARRE <brikou@gmail.com> | 2011-04-15 21:12:02 +0200 |
---|---|---|
committer | Brikou CARRE <brikou@gmail.com> | 2011-04-15 21:12:02 +0200 |
commit | 8c104f24799cdeaceb65624a768e3dc10fee8550 (patch) | |
tree | 883340295e8660b581559b31ee9608e29b554117 /Core/Authentication | |
parent | 77dd608cc377cf77fc9c51d824fce36192346d2f (diff) | |
download | symfony-security-8c104f24799cdeaceb65624a768e3dc10fee8550.zip symfony-security-8c104f24799cdeaceb65624a768e3dc10fee8550.tar.gz symfony-security-8c104f24799cdeaceb65624a768e3dc10fee8550.tar.bz2 |
removed empty lines/trailing spaces
Diffstat (limited to 'Core/Authentication')
-rw-r--r-- | Core/Authentication/RememberMe/PersistentTokenInterface.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Core/Authentication/RememberMe/PersistentTokenInterface.php b/Core/Authentication/RememberMe/PersistentTokenInterface.php index bfd077e..fe1db51 100644 --- a/Core/Authentication/RememberMe/PersistentTokenInterface.php +++ b/Core/Authentication/RememberMe/PersistentTokenInterface.php @@ -14,7 +14,7 @@ namespace Symfony\Component\Security\Core\Authentication\RememberMe; /** * Interface to be implemented by persistent token classes (such as * Doctrine entities representing a remember-me token) - * + * * @author Johannes M. Schmitt <schmittjoh@gmail.com> */ interface PersistentTokenInterface @@ -24,19 +24,19 @@ interface PersistentTokenInterface * @return string */ function getUsername(); - + /** * Returns the series * @return string */ function getSeries(); - + /** * Returns the token value * @return string */ function getTokenValue(); - + /** * Returns the last time the cookie was used * @return \DateTime |