| Conditions | 3 |
| Paths | 3 |
| Total Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 3.1406 |
| Changes | 0 | ||
| 1 | <?php |
||
| 70 | 157 | public function getContents() |
|
| 71 | { |
||
| 72 | 157 | if (!$this->exists()) |
|
| 73 | { |
||
| 74 | 1 | throw $this->buildNotFoundException(); |
|
| 75 | } |
||
| 76 | |||
| 77 | 157 | $content = file_get_contents($this->getAbsolutePath()); |
|
| 78 | |||
| 79 | 157 | if ($content === false) |
|
| 80 | { |
||
| 81 | $error = error_get_last(); |
||
| 82 | throw new \RuntimeException($error['message']); |
||
| 83 | } |
||
| 84 | |||
| 85 | 157 | return $content; |
|
| 86 | } |
||
| 87 | } |
||
| 88 |