| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | class TwigView implements ViewInterface |
||
| 21 | { |
||
| 22 | private Environment $twig; |
||
| 23 | |||
| 24 | 17 | public function __construct(Environment $twig) |
|
| 27 | 17 | } |
|
| 28 | |||
| 29 | /** |
||
| 30 | * @throws LoaderError |
||
| 31 | * @throws RuntimeError |
||
| 32 | * @throws SyntaxError |
||
| 33 | */ |
||
| 34 | 2 | public function render(string $viewFile, array $viewData = []): string |
|
| 37 | } |
||
| 38 | |||
| 39 | 17 | public function getName(): string |
|
| 44 |