| Total Complexity | 2 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Coverage | 82.35% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class IpValidatorAPIController implements ContainerInjectableInterface |
||
| 9 | { |
||
| 10 | use ContainerInjectableTrait; |
||
| 11 | |||
| 12 | protected $validator = null; |
||
| 13 | |||
| 14 | public function initialize() |
||
| 15 | { |
||
| 16 | $this->validator = $this->di->get("ipValidator"); |
||
| 17 | } |
||
| 18 | |||
| 19 | 1 | public function indexActionPost() : array |
|
| 39 | } |
||
| 40 | } |
||
| 41 |