Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | abstract class CompareProcessor implements IterableProcessorInterface, FilterProcessorInterface |
||
15 | { |
||
16 | /** |
||
17 | * @param mixed $itemValue |
||
18 | * @param mixed $argumentValue |
||
19 | */ |
||
20 | abstract protected function compare($itemValue, $argumentValue): bool; |
||
21 | |||
22 | 157 | public function match(array $item, array $arguments, array $filterProcessors): bool |
|
35 |