1 | <?php |
||
18 | class SetShippingInformation implements CommandInterface |
||
19 | { |
||
20 | /** @var string|null */ |
||
21 | protected $token; |
||
22 | |||
23 | /** @var string */ |
||
24 | protected $cartId; |
||
25 | |||
26 | /** @var AddressInformation */ |
||
27 | protected $addressInformation; |
||
28 | |||
29 | public function __construct(?string $token, string $cartId, AddressInformation $addressInformation) |
||
35 | |||
36 | public function token(): ?string |
||
40 | |||
41 | public function cartId(): string |
||
45 | |||
46 | public function addressInformation(): AddressInformation |
||
50 | } |
||
51 |