diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2011-12-13 08:50:54 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2011-12-13 10:22:12 +0100 |
commit | d62274e7daa62c8dd1e2f772e108a773ca043a69 (patch) | |
tree | 66dcd95987e267e83cba9b51b7925255e4a8601d /Core/Authentication/RememberMe | |
parent | d2bdba5c73733dbc45153658584f16b57126090c (diff) | |
download | symfony-security-d62274e7daa62c8dd1e2f772e108a773ca043a69.zip symfony-security-d62274e7daa62c8dd1e2f772e108a773ca043a69.tar.gz symfony-security-d62274e7daa62c8dd1e2f772e108a773ca043a69.tar.bz2 |
[DoctrineBridge] fixed some CS
Diffstat (limited to 'Core/Authentication/RememberMe')
-rw-r--r-- | Core/Authentication/RememberMe/TokenProviderInterface.php | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Core/Authentication/RememberMe/TokenProviderInterface.php b/Core/Authentication/RememberMe/TokenProviderInterface.php index b48bd4d..7f86e4e 100644 --- a/Core/Authentication/RememberMe/TokenProviderInterface.php +++ b/Core/Authentication/RememberMe/TokenProviderInterface.php @@ -19,23 +19,25 @@ namespace Symfony\Component\Security\Core\Authentication\RememberMe; interface TokenProviderInterface { /** - * Loads the active token for the given series + * Loads the active token for the given series. * * @throws TokenNotFoundException if the token is not found * * @param string $series + * * @return PersistentTokenInterface */ function loadTokenBySeries($series); /** - * Deletes all tokens belonging to series + * Deletes all tokens belonging to series. + * * @param string $series */ function deleteTokenBySeries($series); /** - * Updates the token according to this data + * Updates the token according to this data. * * @param string $series * @param string $tokenValue @@ -44,7 +46,8 @@ interface TokenProviderInterface function updateToken($series, $tokenValue, \DateTime $lastUsed); /** - * Creates a new token + * Creates a new token. + * * @param PersistentTokenInterface $token */ function createNewToken(PersistentTokenInterface $token); |