Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
9 | final class ValidationSuccessResult implements ValidationResultInterface |
||
10 | { |
||
11 | protected bool $preventNextChecks; |
||
12 | |||
13 | /** |
||
14 | * @param bool $preventNextChecks |
||
15 | */ |
||
16 | 307 | public function __construct(bool $preventNextChecks) |
|
19 | } |
||
20 | |||
21 | /** |
||
22 | * {@inheritDoc} |
||
23 | */ |
||
24 | 307 | public function preventNextChecks(): bool |
|
29 |