Total Complexity | 4 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
10 | final class RequestHandler implements RequestHandlerInterface |
||
11 | { |
||
12 | private \SplStack $stack; |
||
13 | private bool $called = false; |
||
14 | |||
15 | 6 | public function __construct(\SplStack $stack) |
|
18 | } |
||
19 | |||
20 | 4 | public function handle(ServerRequestInterface $request): ResponseInterface |
|
36 |