| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 32 | public function dispatch(ServerRequestInterface $request, RequestHandlerInterface $fallbackHandler): ResponseInterface |
||
| 33 | { |
||
| 34 | if ($this->stack->isEmpty()) { |
||
| 35 | $this->stack = $this->stack->build($this->buildMiddlewares(), $fallbackHandler); |
||
| 36 | } |
||
| 37 | |||
| 38 | return $this->stack->handle($request); |
||
| 39 | } |
||
| 65 |