1 | <?php |
||
20 | class OrderByOrderNumberGetRequest extends AbstractByIdGetRequest |
||
21 | { |
||
22 | protected $resultClass = Order::class; |
||
23 | |||
24 | /** |
||
25 | * @param string $orderNumber |
||
26 | * @param Context $context |
||
27 | */ |
||
28 | 1 | public function __construct($orderNumber, Context $context = null) |
|
32 | |||
33 | /** |
||
34 | * @param string $orderNumber |
||
35 | * @param Context $context |
||
36 | * @return static |
||
37 | */ |
||
38 | 1 | public static function ofOrderNumber($orderNumber, Context $context = null) |
|
42 | |||
43 | /** |
||
44 | * @return string |
||
45 | */ |
||
46 | public function getOrderNumber() |
||
50 | |||
51 | /** |
||
52 | * @param string $orderNumber |
||
53 | * @return $this |
||
54 | */ |
||
55 | public function setOrderNumber($orderNumber) |
||
59 | |||
60 | /** |
||
61 | * @return string |
||
62 | * @internal |
||
63 | */ |
||
64 | 1 | protected function getPath() |
|
68 | } |
||
69 |