1 | <?php |
||
7 | abstract class Endpoint extends BaseEndpoint |
||
8 | { |
||
9 | /** |
||
10 | * Get the request url. |
||
11 | * |
||
12 | * @return string |
||
13 | */ |
||
14 | public function getUrl() |
||
18 | |||
19 | /** |
||
20 | * Get the request headers. |
||
21 | * |
||
22 | * @return array |
||
23 | */ |
||
24 | public function getHeaders() |
||
30 | |||
31 | /** |
||
32 | * Get the authentication request data. |
||
33 | * |
||
34 | * @return array |
||
35 | */ |
||
36 | protected function authenticationData() |
||
48 | } |
||
49 |