vendor/symfony/security-csrf/CsrfToken.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\Csrf;
  11. /**
  12.  * A CSRF token.
  13.  *
  14.  * @author Bernhard Schussek <bschussek@gmail.com>
  15.  */
  16. class CsrfToken
  17. {
  18.     private string $id;
  19.     private string $value;
  20.     public function __construct(string $id, ?string $value)
  21.     {
  22.         $this->id $id;
  23.         $this->value $value ?? '';
  24.     }
  25.     /**
  26.      * Returns the ID of the CSRF token.
  27.      */
  28.     public function getId(): string
  29.     {
  30.         return $this->id;
  31.     }
  32.     /**
  33.      * Returns the value of the CSRF token.
  34.      */
  35.     public function getValue(): string
  36.     {
  37.         return $this->value;
  38.     }
  39.     /**
  40.      * Returns the value of the CSRF token.
  41.      */
  42.     public function __toString(): string
  43.     {
  44.         return $this->value;
  45.     }
  46. }