Code Duplication    Length = 3-3 lines in 2 locations

src/LogicalFilter.php 2 locations

@@ 939-941 (lines=3) @@
936
                            $range['max'][] = $rule->getValues();
937
                        }
938
                    }
939
                    elseif (in_array($rule::operator, ['<', '<='])) {
940
                        $range['max'][] = $rule->getValues();
941
                    }
942
                    elseif (in_array($rule::operator, ['>', '>='])) {
943
                        $range['min'][] = $rule->getValues();
944
                    }
@@ 942-944 (lines=3) @@
939
                    elseif (in_array($rule::operator, ['<', '<='])) {
940
                        $range['max'][] = $rule->getValues();
941
                    }
942
                    elseif (in_array($rule::operator, ['>', '>='])) {
943
                        $range['min'][] = $rule->getValues();
944
                    }
945
                    elseif (in_array($rule::operator, ['><', '><=', '=><=', '=><'])) {
946
                        $range['min'][] = $rule->getValues()[0];
947
                        $range['max'][] = $rule->getValues()[1];