| 1 | <?php |
||
| 10 | class FileFetcher extends AbstractFetcher |
||
| 11 | { |
||
| 12 | /** @var string */ |
||
| 13 | private $path; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param string $path |
||
| 17 | */ |
||
| 18 | public function setPath($path) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return string |
||
| 25 | * @throws RuntimeException |
||
| 26 | */ |
||
| 27 | protected function fetchContentAsStringOrThrowRuntimeException() |
||
| 43 | } |
||
| 44 |