1 | <?php |
||
9 | class Template |
||
10 | { |
||
11 | /** @var \Twig_Environment */ |
||
12 | protected $twig; |
||
13 | |||
14 | /** @var string */ |
||
15 | protected $template; |
||
16 | |||
17 | public function __construct(string $template) |
||
22 | |||
23 | public function render(array $context): string |
||
29 | |||
30 | protected function createTwigEnvironment(): Twig_Environment |
||
53 | } |
||
54 |