vendor/symfony/security-core/Authentication/Token/AnonymousToken.php line 19

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. /**
  12.  * AnonymousToken represents an anonymous token.
  13.  *
  14.  * @author Fabien Potencier <fabien@symfony.com>
  15.  */
  16. class AnonymousToken extends AbstractToken
  17. {
  18.     private $secret;
  19.     /**
  20.      * @param string        $secret A secret used to make sure the token is created by the app and not by a malicious client
  21.      * @param string|object $user   The user can be a UserInterface instance, or an object implementing a __toString method or the username as a regular string
  22.      * @param string[]      $roles  An array of roles
  23.      */
  24.     public function __construct(string $secret$user, array $roles = [])
  25.     {
  26.         parent::__construct($roles);
  27.         $this->secret $secret;
  28.         $this->setUser($user);
  29.         $this->setAuthenticated(true);
  30.     }
  31.     /**
  32.      * {@inheritdoc}
  33.      */
  34.     public function getCredentials()
  35.     {
  36.         return '';
  37.     }
  38.     /**
  39.      * Returns the secret.
  40.      *
  41.      * @return string
  42.      */
  43.     public function getSecret()
  44.     {
  45.         return $this->secret;
  46.     }
  47.     /**
  48.      * {@inheritdoc}
  49.      */
  50.     public function __serialize(): array
  51.     {
  52.         return [$this->secretparent::__serialize()];
  53.     }
  54.     /**
  55.      * {@inheritdoc}
  56.      */
  57.     public function __unserialize(array $data): void
  58.     {
  59.         [$this->secret$parentData] = $data;
  60.         parent::__unserialize($parentData);
  61.     }
  62. }