Total Complexity | 3 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
11 | class StackRunner implements RequestHandlerInterface |
||
12 | { |
||
13 | /** @var InvokerInterface */ |
||
14 | protected $invoker; |
||
15 | |||
16 | protected $stack = []; |
||
17 | |||
18 | protected $current = 0; |
||
19 | |||
20 | /** @var ResponseFactoryInterface */ |
||
21 | protected $responseFactory; |
||
22 | |||
23 | 2 | public function __construct( |
|
31 | 2 | } |
|
32 | |||
33 | 2 | public function handle(ServerRequestInterface $request): ResponseInterface |
|
48 |