Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
32 | 1 | 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 | 1 | parent::__construct($message, $code, $previous); |
|
40 | 1 | $this->stub = $stub; |
|
41 | 1 | $this->factory = $factory; |
|
42 | 1 | } |
|
63 |