| Total Complexity | 1 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | trait Twig |
||
| 14 | { |
||
| 15 | private JasnyTwig|SlimTwig $twig; |
||
| 16 | |||
| 17 | abstract protected function getResponse(): ResponseInterface; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Output rendered Twig template |
||
| 21 | * |
||
| 22 | * @throws RuntimeError |
||
| 23 | * @throws SyntaxError |
||
| 24 | * @throws LoaderError |
||
| 25 | */ |
||
| 26 | protected function view(string $template, array $data = []): ResponseInterface |
||
| 31 |