| 1 | <?php |
||
| 16 | class InitRendererFacadeMiddleware implements MiddlewareInterface |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var RendererInterface |
||
| 20 | */ |
||
| 21 | private $renderer; |
||
| 22 | |||
| 23 | public function __construct(RendererInterface $renderer) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Process an incoming server request and return a response, optionally delegating |
||
| 30 | * response creation to a handler. |
||
| 31 | */ |
||
| 32 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
||
| 37 | } |
||
| 38 |