Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class TwigFacade implements TwigFacadeInterface |
||
17 | { |
||
18 | 2 | public function __construct(private readonly TwigRendererFactoryInterface $twigRendererFactory) |
|
19 | { |
||
20 | 2 | } |
|
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | 1 | public function render(string $templateName, array $arguments = []): string |
|
30 | } |
||
31 | } |
||
32 |