Total Complexity | 5 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class WebResponseFormatter implements MiddlewareInterface |
||
13 | { |
||
14 | private ResponseFormatterInterface $responseFormatter; |
||
15 | |||
16 | private bool $forceRender; |
||
17 | |||
18 | public function __construct(ResponseFormatterInterface $responseFormatter, bool $forceRender = false) |
||
22 | } |
||
23 | |||
24 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
||
38 |