| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2.032 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 50 | 30 | public function shiftMiddleware() : MiddlewareInterface |
|
| 51 | { |
||
| 52 | 30 | $middleware = array_shift($this->middleware); |
|
| 53 | |||
| 54 | 30 | if (is_null($middleware)) { |
|
| 55 | throw new OutOfBoundsException('Reached end of middleware stack. Does your controller return a response?'); |
||
| 56 | } |
||
| 57 | |||
| 58 | 30 | return $middleware; |
|
| 59 | } |
||
| 60 | |||
| 69 |