vendor/dvdw/platform-choice/src/System/SalesChannel/Struct/EncodedTokenExtension.php line 7

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Dvdw\PlatformChoice\System\SalesChannel\Struct;
  3. use Shopware\Core\Framework\Struct\Struct;
  4. class EncodedTokenExtension extends Struct
  5. {
  6.     public CONST KEY 'encodedToken';
  7.     protected string $encoded;
  8.     public function __construct(string $encoded)
  9.     {
  10.         $this->encoded $encoded;
  11.     }
  12.     public function getEncoded(): string
  13.     {
  14.         return $this->encoded;
  15.     }
  16. }