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