1 | <?php |
||
19 | final class TemplateBlockRenderer implements TemplateBlockRendererInterface |
||
20 | { |
||
21 | /** @var Environment */ |
||
22 | private $twig; |
||
23 | |||
24 | /** @var bool */ |
||
25 | private $debug; |
||
26 | |||
27 | public function __construct(Environment $twig, bool $debug) |
||
32 | |||
33 | public function render(string $eventName, TemplateBlock $templateBlock, array $context = []): string |
||
52 | } |
||
53 |