Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
36 | public function run(MiddlewareQueue $queue, ServerRequestInterface $request, ?RequestHandlerInterface $fallback = null): ResponseInterface |
||
37 | { |
||
38 | $this->queue = $queue; |
||
39 | $this->fallback = $fallback; |
||
40 | $this->queue->rewind(); |
||
41 | $this->queue->resolveGroups(); |
||
42 | |||
43 | return $this->handle($request); |
||
44 | } |
||
65 |