Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
28 | 2 | public function __construct($di) |
|
29 | { |
||
30 | 2 | $this->di = $di; |
|
|
|||
31 | 2 | $this->ipValidate = new IpValidate($this->di); |
|
32 | 2 | $this->ipType = new IpType($this->di); |
|
33 | 2 | $this->ipDomainname = new IpDomainname($this->di); |
|
34 | 2 | $this->ipCheckCoordinates = new IpCheckCoordinates($this->di); |
|
35 | 2 | } |
|
59 |