1 | <?php |
||
5 | class Symbol extends Endpoint |
||
6 | { |
||
7 | /** |
||
8 | * Get the request url. |
||
9 | * |
||
10 | * @return string |
||
11 | */ |
||
12 | public function getUrl() |
||
16 | |||
17 | /** |
||
18 | * Get the request method. |
||
19 | * |
||
20 | * @return string |
||
21 | */ |
||
22 | public function getMethod() |
||
26 | |||
27 | /** |
||
28 | * Map the given array to create a response object. |
||
29 | * |
||
30 | * @param array $data |
||
31 | * @return array |
||
32 | */ |
||
33 | public function mapResponse(array $data = []) |
||
49 | } |
||
50 |