diff options
author | Joseph Bielawski <stloyd@gmail.com> | 2014-01-17 10:30:22 +0100 |
---|---|---|
committer | Joseph Bielawski <stloyd@gmail.com> | 2014-01-17 10:30:22 +0100 |
commit | 916ee032f85e3bba7b6e5fb05b807d27d4267640 (patch) | |
tree | 9f712835b1de39fda0271b493927d2b6a0bb99df /Core/Authentication/Token/RememberMeToken.php | |
parent | bcdebea77d289cc60ca17f135edd6cd95f4991fa (diff) | |
download | symfony-security-916ee032f85e3bba7b6e5fb05b807d27d4267640.zip symfony-security-916ee032f85e3bba7b6e5fb05b807d27d4267640.tar.gz symfony-security-916ee032f85e3bba7b6e5fb05b807d27d4267640.tar.bz2 |
[Component/Security] Fixed some phpdocs in Security/Core
Diffstat (limited to 'Core/Authentication/Token/RememberMeToken.php')
-rw-r--r-- | Core/Authentication/Token/RememberMeToken.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Core/Authentication/Token/RememberMeToken.php b/Core/Authentication/Token/RememberMeToken.php index 6f3d821..609fdad 100644 --- a/Core/Authentication/Token/RememberMeToken.php +++ b/Core/Authentication/Token/RememberMeToken.php @@ -51,6 +51,9 @@ class RememberMeToken extends AbstractToken parent::setAuthenticated(true); } + /** + * {@inheritdoc} + */ public function setAuthenticated($authenticated) { if ($authenticated) { @@ -60,16 +63,29 @@ class RememberMeToken extends AbstractToken parent::setAuthenticated(false); } + /** + * Returns the provider key. + * + * @return string The provider key + */ public function getProviderKey() { return $this->providerKey; } + /** + * Returns the key. + * + * @return string The Key + */ public function getKey() { return $this->key; } + /** + * {@inheritdoc} + */ public function getCredentials() { return ''; |