| Total Complexity | 4 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class InstrumentInfo extends PublicEndpoint |
||
| 16 | { |
||
| 17 | public function getEndpointRequestMethod(): string |
||
| 18 | { |
||
| 19 | return EnumHttpMethods::GET; |
||
| 20 | } |
||
| 21 | |||
| 22 | protected function getEndpointUrl(): string |
||
| 23 | { |
||
| 24 | return "/spot/v3/public/symbols"; |
||
| 25 | } |
||
| 26 | |||
| 27 | protected function getResponseClassnameByCondition(array &$apiData = null): string |
||
| 30 | } |
||
| 31 | |||
| 32 | protected function getRequestClassname(): string |
||
| 35 | } |
||
| 36 | } |
||
| 37 |