1 | <?php |
||
19 | class CreateOrder implements CommandInterface |
||
20 | { |
||
21 | /** @var string|null */ |
||
22 | protected $cartId; |
||
23 | |||
24 | /** @var AddressInformation */ |
||
25 | protected $addressInformation; |
||
26 | |||
27 | /** @var Product[] */ |
||
28 | protected $products; |
||
29 | |||
30 | public function __construct( |
||
39 | |||
40 | public function cartId(): ?string |
||
44 | |||
45 | public function addressInformation(): AddressInformation |
||
49 | |||
50 | public function products(): array |
||
54 | } |
||
55 |