1 | <?php |
||
11 | class Liquid extends Template |
||
12 | { |
||
13 | /** |
||
14 | * @var LiquidTemplate |
||
15 | */ |
||
16 | private $liquid; |
||
17 | |||
18 | /** |
||
19 | * @param Filesystem $filesystem |
||
20 | */ |
||
21 | 4 | public function __construct(Filesystem $filesystem) |
|
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | 3 | public function renderSource(string $source, array $variables): string |
|
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | 2 | protected function fileName(string $templateName): string |
|
46 | } |
||
47 |