Conditions | 3 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | public function buildSource(): Source |
||
33 | { |
||
34 | if (!\file_exists($this->filePath) || !\is_readable($this->filePath)) { |
||
35 | throw new InvariantException(sprintf('The file %s cannot be found or is not readable', $this->filePath)); |
||
36 | } |
||
37 | |||
38 | return new Source(\file_get_contents($this->filePath)); |
||
39 | } |
||
41 |