diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2011-12-13 16:12:53 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2011-12-13 16:12:53 +0100 |
commit | 6b3a3b55d1d7318db0948afa3babb5fa953aa5d2 (patch) | |
tree | 5b7b6152a6f2d1c2fd39c3afc4fcb76197f87dd1 /Core/Authentication/Token | |
parent | 571b855fb77836023b28fc3bfd5d5a3b8459e847 (diff) | |
parent | d62274e7daa62c8dd1e2f772e108a773ca043a69 (diff) | |
download | symfony-security-6b3a3b55d1d7318db0948afa3babb5fa953aa5d2.zip symfony-security-6b3a3b55d1d7318db0948afa3babb5fa953aa5d2.tar.gz symfony-security-6b3a3b55d1d7318db0948afa3babb5fa953aa5d2.tar.bz2 |
merged 2.0
Diffstat (limited to 'Core/Authentication/Token')
-rw-r--r-- | Core/Authentication/Token/RememberMeToken.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Core/Authentication/Token/RememberMeToken.php b/Core/Authentication/Token/RememberMeToken.php index fe30c21..de50e5c 100644 --- a/Core/Authentication/Token/RememberMeToken.php +++ b/Core/Authentication/Token/RememberMeToken.php @@ -30,7 +30,8 @@ class RememberMeToken extends AbstractToken * @param string $providerKey * @param string $key */ - public function __construct(UserInterface $user, $providerKey, $key) { + public function __construct(UserInterface $user, $providerKey, $key) + { parent::__construct($user->getRoles()); if (empty($key)) { |