Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
17 | class HtmlPage extends HydePage |
||
18 | { |
||
19 | public static string $sourceDirectory = '_pages'; |
||
20 | public static string $outputDirectory = ''; |
||
21 | public static string $fileExtension = '.html'; |
||
22 | |||
23 | public function contents(): string |
||
24 | { |
||
25 | return file_get_contents($this->getSourcePath()); |
||
26 | } |
||
27 | |||
28 | public function compile(): string |
||
31 | } |
||
32 | |||
33 | public function getBladeView(): string |
||
38 |