1 | <?php |
||
8 | final class PutSimpleItemToCartRequest |
||
9 | { |
||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | private $token; |
||
14 | |||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | private $productCode; |
||
19 | |||
20 | /** |
||
21 | * @var int |
||
22 | */ |
||
23 | private $quantity; |
||
24 | |||
25 | private function __construct($token, $productCode, $quantity) |
||
31 | |||
32 | public static function fromArray(array $item) |
||
36 | |||
37 | public static function fromRequest(Request $request) |
||
41 | |||
42 | /** |
||
43 | * @return PutSimpleItemToCart |
||
44 | */ |
||
45 | public function getCommand() |
||
49 | } |
||
50 |