vendor/sylius/sylius/src/Sylius/Bundle/ApiBundle/Command/Account/SendAccountVerificationEmail.php line 21

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Sylius package.
  4.  *
  5.  * (c) Paweł Jędrzejewski
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. declare(strict_types=1);
  11. namespace Sylius\Bundle\ApiBundle\Command\Account;
  12. /**
  13.  * @experimental
  14.  *
  15.  * @psalm-immutable
  16.  */
  17. class SendAccountVerificationEmail
  18. {
  19.     /** @var string */
  20.     public $shopUserEmail;
  21.     /** @var string */
  22.     public $localeCode;
  23.     /** @var string */
  24.     public $channelCode;
  25.     public function __construct(string $shopUserEmailstring $localeCodestring $channelCode)
  26.     {
  27.         $this->shopUserEmail $shopUserEmail;
  28.         $this->localeCode $localeCode;
  29.         $this->channelCode $channelCode;
  30.     }
  31. }