Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function __construct($filename, $mode = 'r', $compressed = false) |
||
12 | { |
||
13 | if (! file_exists($filename)) { |
||
14 | throw new \Exception('File not found'); |
||
15 | } |
||
16 | if ($compressed) { |
||
17 | $this->file = new \SplFileObject('compress.zlib://'.$filename, $mode); |
||
18 | } else { |
||
19 | $this->file = new \SplFileObject($filename, $mode); |
||
20 | } |
||
21 | } |
||
22 | |||
35 |