Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | abstract class BaseRule implements BaseRuleInterface |
||
14 | { |
||
15 | /** |
||
16 | * {@inheritDoc} |
||
17 | */ |
||
18 | 50 | public function validate($value): void |
|
21 | } |
||
22 | |||
23 | /** |
||
24 | * @param mixed $value |
||
25 | * |
||
26 | * @return ExecutionResultInterface |
||
27 | */ |
||
28 | 50 | protected function execute($value): ExecutionResultInterface |
|
33 |