| Total Complexity | 4 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class GetOrder extends PrivateEndpoint |
||
| 14 | { |
||
| 15 | public function getEndpointRequestMethod(): string |
||
| 16 | { |
||
| 17 | return EnumHttpMethods::GET; |
||
| 18 | } |
||
| 19 | |||
| 20 | protected function getEndpointUrl(): string |
||
| 23 | } |
||
| 24 | |||
| 25 | protected function getResponseClassnameByCondition(array &$apiData = null): string |
||
| 26 | { |
||
| 27 | return GetOrderResponse::class; |
||
| 28 | } |
||
| 29 | |||
| 30 | protected function getRequestClassname(): string |
||
| 33 | } |
||
| 34 | } |
||
| 35 |