| Conditions | 4 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 4.3731 |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | 12 | private function __construct($file) |
|
| 38 | { |
||
| 39 | 12 | if (!file_exists($file) || !is_readable($file)) { |
|
| 40 | throw new \RuntimeException("{$file} is not exists or not readable"); |
||
| 41 | } |
||
| 42 | 12 | $this->fp = fopen($file, "r+"); |
|
| 43 | 12 | if (!is_resource($this->fp)) { |
|
| 44 | throw new \RuntimeException("open {$file} failed"); |
||
| 45 | } |
||
| 46 | 12 | } |
|
| 47 | |||
| 126 | } |