| Conditions | 4 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 4.3731 |
| Changes | 0 | ||
| 1 | <?php |
||
| 49 | 12 | private function __construct($file) |
|
| 50 | { |
||
| 51 | 12 | if (!file_exists($file) || !is_readable($file)) { |
|
| 52 | throw new \RuntimeException("{$file} is not exists or not readable"); |
||
| 53 | } |
||
| 54 | 12 | $this->fp = fopen($file, 'r+'); |
|
| 55 | 12 | if (!is_resource($this->fp)) { |
|
| 56 | throw new \RuntimeException("open {$file} failed"); |
||
| 57 | } |
||
| 58 | 12 | } |
|
| 59 | |||
| 127 | } |