| Conditions | 5 |
| Paths | 5 |
| Total Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 5.0342 |
| Changes | 0 | ||
| 1 | <?php |
||
| 83 | 16 | private function getResource() |
|
| 84 | { |
||
| 85 | 16 | if ($this->resource && !feof($this->resource)) { |
|
| 86 | 4 | return $this->resource; |
|
| 87 | } |
||
| 88 | |||
| 89 | 16 | if ($this->resource !== null) { |
|
| 90 | 4 | fclose($this->resource); |
|
| 91 | } |
||
| 92 | |||
| 93 | 16 | $this->resource = fopen($this->filename, "r"); |
|
| 94 | 16 | if (!$this->resource) { |
|
| 95 | throw new RuntimeException("Unable to read from {$this->filename}"); |
||
| 96 | } |
||
| 97 | |||
| 98 | 16 | return $this->resource; |
|
| 99 | } |
||
| 100 | } |
||
| 101 |