| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | 4 | private function __construct( |
|
| 23 | bool $isSuccess, |
||
| 24 | ?RequestHandlerInterface $matchedHandler = null, |
||
| 25 | array $matchedParams = [], |
||
| 26 | ?RoutingErrorInterface $error = null |
||
| 27 | ) { |
||
| 28 | 4 | $this->isSuccess = $isSuccess; |
|
| 29 | 4 | $this->matchedHandler = $matchedHandler; |
|
| 30 | 4 | $this->matchedParams = $matchedParams; |
|
| 31 | 4 | $this->error = $error; |
|
| 32 | 4 | } |
|
| 33 | |||
| 64 |