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