| Total Complexity | 4 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Coverage | 42.86% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class RetrospectiveCheck implements CheckInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * {@inheritDoc} |
||
| 17 | * |
||
| 18 | * @throws ValidationError if there are previous errors |
||
| 19 | */ |
||
| 20 | 3 | public function execute($value, array $previousErrors): void |
|
| 24 | } |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * {@inheritDoc} |
||
| 29 | * |
||
| 30 | * @return true |
||
| 31 | */ |
||
| 32 | public function isInterrupting(): bool |
||
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @param bool $value |
||
| 39 | * |
||
| 40 | * @return static |
||
| 41 | */ |
||
| 42 | public function setInterrupting(bool $value = true): self |
||
| 47 |