1 | <?php |
||
21 | class ConjunctionReducer implements ReducerInterface |
||
22 | { |
||
23 | /** |
||
24 | * @param RuleInterface $rule |
||
25 | * @return bool |
||
26 | */ |
||
27 | public function match(RuleInterface $rule): bool |
||
31 | |||
32 | /** |
||
33 | * @param RuleInterface $rule |
||
34 | * @return \Generator|Matchable |
||
35 | */ |
||
36 | public function reduce(RuleInterface $rule): \Generator |
||
40 | } |
||
41 |