| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 28.57% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class TwigRenderer implements TwigRendererInterface |
||
| 17 | { |
||
| 18 | 2 | public function __construct( |
|
| 19 | private readonly EnvironmentFactoryInterface $environmentFactory |
||
| 20 | ) { |
||
| 21 | 2 | } |
|
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | public function render(string $templateName, array $arguments): string |
||
| 32 | } |
||
| 33 | } |
||
| 34 |