Total Complexity | 7 |
Total Lines | 58 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php // Copyright ⓒ 2018 Magneds IP B.V. - All Rights Reserved |
||
9 | class ListAllLanguagesRequest implements RequestInterface |
||
10 | { |
||
11 | /** |
||
12 | * Return the method to make this request in. |
||
13 | * |
||
14 | * @return string |
||
15 | */ |
||
16 | public function getMethod() |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * This URI is appended to the route URL given to the Client object. |
||
23 | * |
||
24 | * @return string |
||
25 | */ |
||
26 | public function getURI() |
||
27 | { |
||
28 | return 'language/listall'; |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @return array |
||
33 | */ |
||
34 | public function getQueryArguments() |
||
35 | { |
||
36 | return []; |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * @return array |
||
41 | */ |
||
42 | public function getBody() |
||
45 | } |
||
46 | |||
47 | /** |
||
48 | * @param ResponseInterface $response |
||
49 | * @return mixed |
||
50 | */ |
||
51 | public function handleResponse(ResponseInterface $response): ResponseInfo |
||
69 |