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