1 | <?php |
||
12 | class Liquid extends Template |
||
13 | { |
||
14 | /** |
||
15 | * @var LiquidTemplate |
||
16 | */ |
||
17 | private $liquid; |
||
18 | |||
19 | /** |
||
20 | * @param Filesystem $filesystem |
||
21 | */ |
||
22 | 4 | public function __construct(Filesystem $filesystem) |
|
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | */ |
||
36 | 3 | public function renderSource(string $source, array $variables): string |
|
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | 2 | protected function fileName(string $templateName): string |
|
52 | } |
||
53 |