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