Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class Orders extends ActionsWithDelete |
||
15 | { |
||
16 | /** |
||
17 | * URL для запросов к API |
||
18 | * @var string |
||
19 | */ |
||
20 | public const URL = '/orders'; |
||
21 | |||
22 | /** |
||
23 | * Создание заказа |
||
24 | * @param Order $order |
||
25 | * @return ApiResponse |
||
26 | * @throws \CdekSDK2\Exceptions\RequestException |
||
27 | */ |
||
28 | public function add(Order $order): ApiResponse |
||
34 |