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/UsernamePasswordToken.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/UsernamePasswordToken.php')
-rw-r--r-- | Core/Authentication/Token/UsernamePasswordToken.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Core/Authentication/Token/UsernamePasswordToken.php b/Core/Authentication/Token/UsernamePasswordToken.php index 3854242..b6dfce4 100644 --- a/Core/Authentication/Token/UsernamePasswordToken.php +++ b/Core/Authentication/Token/UsernamePasswordToken.php @@ -60,11 +60,19 @@ class UsernamePasswordToken extends AbstractToken parent::setAuthenticated(false); } + /** + * {@inheritdoc} + */ public function getCredentials() { return $this->credentials; } + /** + * Returns the provider key. + * + * @return string The provider key + */ public function getProviderKey() { return $this->providerKey; |