| Total Complexity | 1 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | abstract class AbstractViewMiddleware implements MiddlewareInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @param ResponseInterface $response |
||
| 14 | * @param string $body |
||
| 15 | * @param int $status |
||
| 16 | * @return ResponseInterface |
||
| 17 | */ |
||
| 18 | protected function getResponseWithBodyAndStatus(ResponseInterface $response, string $body, int $status = 200): ResponseInterface |
||
| 25 | } |
||
| 26 | } |