Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | final class PassThroughRequestHandler implements RequestHandlerInterface |
||
18 | { |
||
19 | /** |
||
20 | * @var callable |
||
21 | */ |
||
22 | private $next; |
||
23 | |||
24 | /** |
||
25 | * @param callable $next |
||
26 | */ |
||
27 | public function __construct(callable $next) |
||
30 | } |
||
31 | |||
32 | public function handle(ServerRequestInterface $request): ResponseInterface |
||
38 |