1 | <?php declare(strict_types=1); |
||
15 | final class TemplateRenderMiddleware |
||
16 | { |
||
17 | /** @var Environment */ |
||
18 | private $twig; |
||
19 | |||
20 | /** |
||
21 | * @param Environment $twig |
||
22 | */ |
||
23 | public function __construct(Environment $twig) |
||
27 | |||
28 | public function __invoke(ServerRequestInterface $request, callable $next): PromiseInterface |
||
45 | } |
||
46 |