| 1 | <?php |
||
| 17 | class DeleteCoupon implements CommandInterface |
||
| 18 | { |
||
| 19 | /** @var string|null */ |
||
| 20 | protected $token; |
||
| 21 | |||
| 22 | /** @var string */ |
||
| 23 | protected $cartId; |
||
| 24 | |||
| 25 | public function __construct(?string $token, string $cartId) |
||
| 30 | |||
| 31 | public function token(): ?string |
||
| 35 | |||
| 36 | public function cartId(): string |
||
| 40 | } |
||
| 41 |