| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 4 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class HtmlPage extends HydePage |
||
| 8 | { |
||
| 9 | public static string $sourceDirectory = '_pages'; |
||
| 10 | public static string $outputDirectory = ''; |
||
| 11 | public static string $fileExtension = '.html'; |
||
| 12 | |||
| 13 | public function contents(): string |
||
| 14 | { |
||
| 15 | return file_get_contents($this->getSourcePath()); |
||
| 16 | } |
||
| 17 | |||
| 18 | public function compile(): string |
||
| 21 | } |
||
| 22 | } |
||
| 23 |