Total Complexity | 4 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
8 | class IpRestfulController implements ContainerInjectableInterface |
||
9 | { |
||
10 | use ContainerInjectableTrait; |
||
11 | |||
12 | /** |
||
13 | * This is the index method action, it handles: |
||
14 | * POST METHOD mountpoint |
||
15 | * POST METHOD mountpoint/ |
||
16 | * POST METHOD mountpoint/index |
||
17 | * Return status of given ip-number |
||
18 | * |
||
19 | * @return array |
||
20 | */ |
||
21 | 2 | public function indexActionPost() : array |
|
46 |