vendor/symfony/security-core/Authentication/Token/AnonymousToken.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\Role\Role;
  12. /**
  13.  * AnonymousToken represents an anonymous token.
  14.  *
  15.  * @author Fabien Potencier <fabien@symfony.com>
  16.  */
  17. class AnonymousToken extends AbstractToken
  18. {
  19.     private $secret;
  20.     /**
  21.      * @param string        $secret A secret used to make sure the token is created by the app and not by a malicious client
  22.      * @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
  23.      * @param Role[]        $roles  An array of roles
  24.      */
  25.     public function __construct(string $secret$user, array $roles = [])
  26.     {
  27.         parent::__construct($roles);
  28.         $this->secret $secret;
  29.         $this->setUser($user);
  30.         $this->setAuthenticated(true);
  31.     }
  32.     /**
  33.      * {@inheritdoc}
  34.      */
  35.     public function getCredentials()
  36.     {
  37.         return '';
  38.     }
  39.     /**
  40.      * Returns the secret.
  41.      *
  42.      * @return string
  43.      */
  44.     public function getSecret()
  45.     {
  46.         return $this->secret;
  47.     }
  48.     /**
  49.      * {@inheritdoc}
  50.      */
  51.     public function serialize()
  52.     {
  53.         $serialized = [$this->secretparent::serialize(true)];
  54.         return $this->doSerialize($serialized, \func_num_args() ? func_get_arg(0) : null);
  55.     }
  56.     /**
  57.      * {@inheritdoc}
  58.      */
  59.     public function unserialize($serialized)
  60.     {
  61.         list($this->secret$parentStr) = \is_array($serialized) ? $serialized unserialize($serialized);
  62.         parent::unserialize($parentStr);
  63.     }
  64. }