| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function setup() |
||
| 19 | { |
||
| 20 | parent::setUp(); |
||
| 21 | |||
| 22 | $lines = |
||
| 23 | "127.0.0.1\n". |
||
| 24 | "192.168.17.0/24\n". |
||
| 25 | "127.0.0.1/255.255.255.255\n". |
||
| 26 | "10.0.0.1-10.0.0.255\n". |
||
| 27 | "172.17.*.*\n"; |
||
| 28 | |||
| 29 | file_put_contents($this->getFilename(), $lines); |
||
| 30 | |||
| 31 | $this->setConfig('blacklist', $this->getFilename()); |
||
| 32 | } |
||
| 33 | |||
| 41 |