Total Complexity | 4 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
12 | class ServerTimeRequest implements RequestInterface |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * Returns the api request name |
||
17 | * |
||
18 | * @return string |
||
19 | */ |
||
20 | 1 | public function getMethod() |
|
21 | { |
||
22 | 1 | return 'Time'; |
|
23 | } |
||
24 | |||
25 | /** |
||
26 | * @return string |
||
27 | */ |
||
28 | 1 | public function getVisibility() |
|
31 | } |
||
32 | |||
33 | /** |
||
34 | * @return array |
||
35 | */ |
||
36 | 1 | public function getRequestData() |
|
37 | { |
||
38 | 1 | return []; |
|
39 | } |
||
40 | |||
41 | /** |
||
42 | * @return string |
||
43 | */ |
||
44 | 1 | public function getResponseClassName() |
|
47 | } |
||
48 | } |
||
49 |