Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
16 | 5 | public function onCheckResult(CheckResult $checkResult): void |
|
17 | { |
||
18 | 5 | if ($checkResult->isValid()) { |
|
19 | 3 | return; |
|
20 | } |
||
21 | |||
22 | 2 | throw new \RuntimeException(sprintf( |
|
23 | 2 | '"%s" Schema violations: "%s"', |
|
24 | 2 | $checkResult->getFormat(), |
|
25 | 2 | implode(', ', $checkResult->getValidationResult()->getViolations()) |
|
26 | )); |
||
29 |