| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 32 | public function __construct( |
||
| 33 | $stub, |
||
| 34 | ResponseFactoryInterface $factory, |
||
| 35 | Throwable $previous = null, |
||
| 36 | string $message = 'router stub parse failed', |
||
| 37 | int $code = 0 |
||
| 38 | ) { |
||
| 39 | parent::__construct($message, $code, $previous); |
||
| 40 | $this->stub = $stub; |
||
| 41 | $this->factory = $factory; |
||
| 42 | } |
||
| 63 |