Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 5 | ||
Bugs | 0 | Features | 1 |
1 | <?php declare(strict_types=1); |
||
10 | final class TwigRenderer implements RendererInterface |
||
11 | { |
||
12 | 2 | public function __construct( |
|
13 | private Environment $twig, |
||
14 | private ResponseFactoryInterface $responseFactory |
||
15 | ) |
||
16 | { |
||
17 | 2 | } |
|
18 | |||
19 | 1 | public function render(ServerRequestInterface $request, ViewInterface $view): ResponseInterface |
|
30 | } |
||
31 | } |
||
32 |