vendor/symfony/security-core/Authentication/Token/UsernamePasswordToken.php line 21

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Security\Core\Authentication\Token;
  11. use Symfony\Component\Security\Core\User\UserInterface;
  12. /**
  13.  * UsernamePasswordToken implements a username and password token.
  14.  *
  15.  * @author Fabien Potencier <fabien@symfony.com>
  16.  */
  17. class UsernamePasswordToken extends AbstractToken
  18. {
  19.     private string $firewallName;
  20.     public function __construct(UserInterface $userstring $firewallName, array $roles = [])
  21.     {
  22.         parent::__construct($roles);
  23.         if ('' === $firewallName) {
  24.             throw new \InvalidArgumentException('$firewallName must not be empty.');
  25.         }
  26.         $this->setUser($user);
  27.         $this->firewallName $firewallName;
  28.     }
  29.     public function getFirewallName(): string
  30.     {
  31.         return $this->firewallName;
  32.     }
  33.     /**
  34.      * {@inheritdoc}
  35.      */
  36.     public function __serialize(): array
  37.     {
  38.         return [null$this->firewallNameparent::__serialize()];
  39.     }
  40.     /**
  41.      * {@inheritdoc}
  42.      */
  43.     public function __unserialize(array $data): void
  44.     {
  45.         [, $this->firewallName$parentData] = $data;
  46.         $parentData \is_array($parentData) ? $parentData unserialize($parentData);
  47.         parent::__unserialize($parentData);
  48.     }
  49. }