diff options
author | bronze1man <bronze1man@gmail.com> | 2013-09-18 20:41:53 +0800 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2013-09-19 11:36:05 +0200 |
commit | c30af3532143759579e27c90c01e7c38e830cc80 (patch) | |
tree | 3d99ddce6b8e1f102c3e75705a2275276e3a70c4 /Core/Authentication/RememberMe | |
parent | 89d082808b9b8c7b78c57cb5fee625383305c3db (diff) | |
download | symfony-security-c30af3532143759579e27c90c01e7c38e830cc80.zip symfony-security-c30af3532143759579e27c90c01e7c38e830cc80.tar.gz symfony-security-c30af3532143759579e27c90c01e7c38e830cc80.tar.bz2 |
Fix some annotates
Diffstat (limited to 'Core/Authentication/RememberMe')
-rw-r--r-- | Core/Authentication/RememberMe/PersistentToken.php | 2 | ||||
-rw-r--r-- | Core/Authentication/RememberMe/TokenProviderInterface.php | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Core/Authentication/RememberMe/PersistentToken.php b/Core/Authentication/RememberMe/PersistentToken.php index f3f6858..8919be9 100644 --- a/Core/Authentication/RememberMe/PersistentToken.php +++ b/Core/Authentication/RememberMe/PersistentToken.php @@ -100,7 +100,7 @@ final class PersistentToken implements PersistentTokenInterface /** * Returns the time the token was last used * - * @return DateTime + * @return \DateTime */ public function getLastUsed() { diff --git a/Core/Authentication/RememberMe/TokenProviderInterface.php b/Core/Authentication/RememberMe/TokenProviderInterface.php index 0c6f75e..39a4ebe 100644 --- a/Core/Authentication/RememberMe/TokenProviderInterface.php +++ b/Core/Authentication/RememberMe/TokenProviderInterface.php @@ -11,6 +11,8 @@ namespace Symfony\Component\Security\Core\Authentication\RememberMe; +use Symfony\Component\Security\Core\Exception\TokenNotFoundException; + /** * Interface for TokenProviders * |