| Total Complexity | 3 |
| Total Lines | 45 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class DutyFree extends BaseRequest |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * 商家接单. |
||
| 12 | * |
||
| 13 | * @param array $params |
||
| 14 | * |
||
| 15 | * @return array |
||
| 16 | * @throws RequestException |
||
| 17 | * |
||
| 18 | * @throws InvalidArgumentException |
||
| 19 | */ |
||
| 20 | public function orderConfirm(array $params): array |
||
| 21 | { |
||
| 22 | return $this->httpPost('dutyFree/orderConfirm', $params); |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * 海南项目服务商回传实操节点. |
||
| 27 | * |
||
| 28 | * @param array $params |
||
| 29 | * |
||
| 30 | * @return array |
||
| 31 | * @throws RequestException |
||
| 32 | * |
||
| 33 | * @throws InvalidArgumentException |
||
| 34 | */ |
||
| 35 | public function orderOperate(array $params): array |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * 商家拉单. |
||
| 42 | * |
||
| 43 | * @param array $params |
||
| 44 | * |
||
| 45 | * @return array |
||
| 46 | * @throws RequestException |
||
| 47 | * |
||
| 48 | * @throws InvalidArgumentException |
||
| 49 | */ |
||
| 50 | public function orderList(array $params): array |
||
| 55 |