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