Conditions | 3 |
Paths | 3 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | protected function readStream($filename) |
||
30 | { |
||
31 | if (!file_exists($filename)) { |
||
32 | throw new FileNotFoundException(sprintf('The file "%s" does not exists.', $filename)); |
||
33 | } |
||
34 | |||
35 | $stream = fopen($filename, 'r'); |
||
36 | if (!$stream) { |
||
37 | throw new FileNotFoundException(sprintf('The file "%s" can\'t be opened.', $filename)); |
||
38 | } |
||
39 | |||
40 | return $stream; |
||
41 | } |
||
42 | } |
||
43 |