Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class ValidationResult implements ValidationResultInterface |
||
8 | { |
||
9 | protected bool $preventNextChecks; |
||
10 | |||
11 | /** |
||
12 | * @param bool $preventNextChecks |
||
13 | */ |
||
14 | 68 | public function __construct(bool $preventNextChecks) |
|
17 | } |
||
18 | |||
19 | /** |
||
20 | * {@inheritDoc} |
||
21 | */ |
||
22 | 68 | public function preventNextChecks(): bool |
|
27 |