| Total Complexity | 4 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Coverage | 42.86% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class RetrospectiveCheck implements CheckInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * {@inheritDoc} |
||
| 12 | * |
||
| 13 | * @throws ValidationError if there are previous errors |
||
| 14 | */ |
||
| 15 | 3 | public function execute($value, array $previousErrors): void |
|
| 19 | } |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * {@inheritDoc} |
||
| 24 | * |
||
| 25 | * @return true |
||
| 26 | */ |
||
| 27 | public function isInterrupting(): bool |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param bool $value |
||
| 34 | * |
||
| 35 | * @return static |
||
| 36 | */ |
||
| 37 | public function setInterrupting(bool $value = true): self |
||
| 42 |