Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
36 | public function render(string $eventName, TemplateBlock $templateBlock, array $context = []): string |
||
37 | { |
||
38 | $this->templateBlockRenderingHistory->startRenderingBlock($eventName, $templateBlock, $context); |
||
39 | |||
40 | $renderedBlock = $this->templateBlockRenderer->render($eventName, $templateBlock, $context); |
||
41 | |||
42 | $this->templateBlockRenderingHistory->stopRenderingBlock($eventName, $templateBlock, $context); |
||
43 | |||
44 | return $renderedBlock; |
||
45 | } |
||
46 | } |
||
47 |