Total Complexity | 4 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class MinsidaController implements ContainerInjectableInterface |
||
9 | { |
||
10 | use ContainerInjectableTrait; |
||
11 | |||
12 | public function indexActionGet() |
||
13 | { |
||
14 | $page = $this->di->get("page"); |
||
15 | $page->add("anax/v2/minsida/minsida", [ |
||
16 | ]); |
||
17 | return $page->render([ |
||
18 | "title"=>"Min sida" |
||
19 | ]); |
||
20 | } |
||
21 | |||
22 | public function indexActionPost() |
||
39 | } |
||
40 | } |
||
41 |