diff options
author | Sebastian Utz <sutz@vz.net> | 2011-02-01 17:37:49 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2011-02-02 11:31:28 +0100 |
commit | a204c9269152bf429c366eb238d9a95ea2e8bf9b (patch) | |
tree | ef8600ff8fa16ea3f3b58f4e34c8ed141c3b2230 /Core/Authentication/Token/PreAuthenticatedToken.php | |
parent | e32bd9d0fb2c6bc29cb2f11b774128811bdb7c6e (diff) | |
download | symfony-security-a204c9269152bf429c366eb238d9a95ea2e8bf9b.zip symfony-security-a204c9269152bf429c366eb238d9a95ea2e8bf9b.tar.gz symfony-security-a204c9269152bf429c366eb238d9a95ea2e8bf9b.tar.bz2 |
[Security] fixed a Token serialization bug
Diffstat (limited to 'Core/Authentication/Token/PreAuthenticatedToken.php')
-rw-r--r-- | Core/Authentication/Token/PreAuthenticatedToken.php | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Core/Authentication/Token/PreAuthenticatedToken.php b/Core/Authentication/Token/PreAuthenticatedToken.php index c84ea10..8efa508 100644 --- a/Core/Authentication/Token/PreAuthenticatedToken.php +++ b/Core/Authentication/Token/PreAuthenticatedToken.php @@ -18,8 +18,6 @@ namespace Symfony\Component\Security\Core\Authentication\Token; */ class PreAuthenticatedToken extends Token { - protected $providerKey; - /** * Constructor. */ @@ -35,11 +33,6 @@ class PreAuthenticatedToken extends Token $this->providerKey = $providerKey; } - public function getProviderKey() - { - return $this->providerKey; - } - /** * {@inheritdoc} */ |