Code Duplication    Length = 3-3 lines in 2 locations

src/LogicalFilter.php 2 locations

@@ 923-925 (lines=3) @@
920
                            $range['max'][] = $rule->getValues();
921
                        }
922
                    }
923
                    elseif (in_array($rule::operator, ['<', '<='])) {
924
                        $range['max'][] = $rule->getValues();
925
                    }
926
                    elseif (in_array($rule::operator, ['>', '>='])) {
927
                        $range['min'][] = $rule->getValues();
928
                    }
@@ 926-928 (lines=3) @@
923
                    elseif (in_array($rule::operator, ['<', '<='])) {
924
                        $range['max'][] = $rule->getValues();
925
                    }
926
                    elseif (in_array($rule::operator, ['>', '>='])) {
927
                        $range['min'][] = $rule->getValues();
928
                    }
929
                    elseif (in_array($rule::operator, ['><', '><=', '=><=', '=><'])) {
930
                        $range['min'][] = $rule->getValues()[0];
931
                        $range['max'][] = $rule->getValues()[1];