Conditions | 2 |
Paths | 2 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | protected function fetchContentAsStringOrThrowRuntimeException() |
||
28 | { |
||
29 | //begin of dependencies |
||
30 | $path = $this->path; |
||
31 | //end of dependencies |
||
32 | |||
33 | //begin of business logic |
||
34 | if (!is_readable($path)) { |
||
35 | throw new RuntimeException( |
||
36 | 'provided path "' . $path . '" is not readable.' |
||
37 | ); |
||
38 | } |
||
39 | |||
40 | return file_get_contents($path); |
||
41 | //begin of business logic |
||
42 | } |
||
43 | } |
||
44 |