Code Duplication    Length = 3-3 lines in 2 locations

src/LogicalFilter.php 2 locations

@@ 659-661 (lines=3) @@
656
                            $range['max'][] = $rule->getValues();
657
                        }
658
                    }
659
                    elseif (in_array($rule::operator, ['<', '<='])) {
660
                        $range['max'][] = $rule->getValues();
661
                    }
662
                    elseif (in_array($rule::operator, ['>', '>='])) {
663
                        $range['min'][] = $rule->getValues();
664
                    }
@@ 662-664 (lines=3) @@
659
                    elseif (in_array($rule::operator, ['<', '<='])) {
660
                        $range['max'][] = $rule->getValues();
661
                    }
662
                    elseif (in_array($rule::operator, ['>', '>='])) {
663
                        $range['min'][] = $rule->getValues();
664
                    }
665
                    elseif (in_array($rule::operator, ['><', '><=', '=><=', '=><'])) {
666
                        $range['min'][] = $rule->getValues()[0];
667
                        $range['max'][] = $rule->getValues()[1];