| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | public function setup() |
||
| 12 | { |
||
| 13 | $this->file = __DIR__.'/../tmp/context.txt'; |
||
| 14 | $handle = fopen($this->file, 'w+'); |
||
| 15 | foreach (range(1, 40) as $line) { |
||
| 16 | fwrite($handle, 'Line '.$line."\n"); |
||
|
|
|||
| 17 | } |
||
| 18 | $stat = fstat($handle); |
||
| 19 | ftruncate($handle, $stat['size'] - 1); |
||
| 20 | fclose($handle); |
||
| 21 | } |
||
| 46 |