1 | <?php |
||
7 | abstract class PugElement extends Element |
||
8 | { |
||
9 | public function render(): string |
||
10 | { |
||
11 | return $this->getEngine()->renderFile($this->getPath().'/'.$this->name.'.pug', $this->getOptions()); |
||
12 | } |
||
13 | |||
14 | abstract protected function getPath(): string; |
||
15 | |||
16 | protected function getEngine(): Pug |
||
20 | } |
||
21 |