| Total Complexity | 4 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 91.67% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | abstract class GroupProcessor implements IterableProcessorInterface, FilterProcessorInterface |
||
| 10 | { |
||
| 11 | abstract protected function checkResults(array $result): bool; |
||
| 12 | |||
| 13 | abstract protected function checkResult($result): ?bool; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * PHP variable specific execute |
||
| 17 | */ |
||
| 18 | 2 | public function match(array $item, array $arguments, array $filterProcessors): bool |
|
| 41 |