| Total Complexity | 2 | 
| Total Lines | 20 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 8 | class IpValidatorController implements ContainerInjectableInterface  | 
            ||
| 9 | { | 
            ||
| 10 | use ContainerInjectableTrait;  | 
            ||
| 11 | |||
| 12 | public function indexAction($result = null)  | 
            ||
| 13 |     { | 
            ||
| 14 |         $page = $this->di->get('page'); | 
            ||
| 15 |         $page->add('anax/ipvalidator/index', compact('result')); | 
            ||
| 16 | |||
| 17 | return $page->render([  | 
            ||
| 18 | 'title' => 'IP Validator',  | 
            ||
| 19 | ]);  | 
            ||
| 20 | }  | 
            ||
| 21 | |||
| 22 | public function indexActionPost()  | 
            ||
| 28 | }  | 
            ||
| 29 | }  | 
            ||
| 30 |