1 | <?php |
||
9 | abstract class ComponentDirectory |
||
10 | { |
||
11 | /** @var string */ |
||
12 | protected $viewDirectory; |
||
13 | |||
14 | /** @var bool */ |
||
15 | protected $includeSubdirectories; |
||
16 | |||
17 | abstract public function getAbsoluteDirectory(): string; |
||
18 | |||
19 | public function getViewName(SplFileInfo $viewFile): string |
||
31 | |||
32 | public function getFiles(): array |
||
38 | } |
||
39 |