vendor/bitbag/wishlist-plugin/src/Command/Wishlist/CreateWishlist.php line 13

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file was created by developers working at BitBag
  4.  * Do you need more information about us and what we do? Visit our https://bitbag.io website!
  5.  * We are hiring developers from all over the world. Join us and start your new, exciting adventure and become part of us: https://bitbag.io/career
  6. */
  7. declare(strict_types=1);
  8. namespace BitBag\SyliusWishlistPlugin\Command\Wishlist;
  9. final class CreateWishlist implements WishlistSyncCommandInterface
  10. {
  11.     public ?string $tokenValue;
  12.     public ?string $channelCode;
  13.     public function __construct(?string $tokenValue, ?string $channelCode)
  14.     {
  15.         $this->tokenValue $tokenValue;
  16.         $this->channelCode $channelCode;
  17.     }
  18.     public function getChannelCode(): ?string
  19.     {
  20.         return $this->channelCode;
  21.     }
  22.     public function getTokenValue(): ?string
  23.     {
  24.         return $this->tokenValue;
  25.     }
  26. }