Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class PlaceOrder extends PrivateEndpoint |
||
14 | { |
||
15 | public function getEndpointRequestMethod(): string |
||
18 | } |
||
19 | |||
20 | protected function getEndpointUrl(): string |
||
21 | { |
||
22 | return "/spot/v3/private/order"; |
||
23 | } |
||
24 | |||
25 | protected function getResponseClassnameByCondition(array &$apiData = null): string |
||
26 | { |
||
27 | return PlaceOrderResponse::class; |
||
28 | } |
||
29 | |||
30 | protected function getRequestClassname(): string |
||
33 | } |
||
34 | } |
||
35 |