Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | final class SuppressionMiddleware implements MiddlewareInterface |
||
15 | { |
||
16 | /** |
||
17 | * Process the view within the context of the current HTTP request, either before or after calling the next |
||
18 | * middleware. Returns the processed view. |
||
19 | * |
||
20 | * @param View $view |
||
21 | * @param ServerRequestInterface $request |
||
22 | * @param callable $next |
||
23 | * |
||
24 | * @return View |
||
25 | */ |
||
26 | 5 | public function process(View $view, ServerRequestInterface $request, callable $next): View |
|
35 |