Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class ReplaceOrderResponse extends AbstractResponse implements IReplaceOrderResponseInterface |
||
9 | { |
||
10 | private string $orderId; |
||
11 | private string $orderLinkId; |
||
12 | |||
13 | public function __construct(array $data) |
||
14 | { |
||
15 | $this->orderId = $data['orderId']; |
||
16 | $this->orderLinkId = $data['orderLinkId']; |
||
17 | } |
||
18 | |||
19 | public function getOrderId(): string |
||
22 | } |
||
23 | |||
24 | public function getOrderLinkId(): string |
||
27 | } |
||
28 | } |
||
29 |