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