| Conditions | 3 |
| Paths | 3 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function readFile(string $path) |
||
| 25 | { |
||
| 26 | if (!file_exists($path)) { |
||
| 27 | throw new \RuntimeException("$path not found"); |
||
| 28 | } |
||
| 29 | |||
| 30 | if (!is_readable($path)) { |
||
| 31 | throw new \RuntimeException("$path not readable"); |
||
| 32 | } |
||
| 33 | |||
| 34 | // read file |
||
| 35 | return $this->readFromFile($path); |
||
| 36 | } |
||
| 37 | |||
| 47 |