Code Duplication    Length = 4-4 lines in 2 locations

src/voku/db/DB.php 2 locations

@@ 464-467 (lines=4) @@
461
                } elseif ($_connector === 'NOT BETWEEN' || $_connector === 'BETWEEN') {
462
                    $_value = '(' . \implode(' AND ', $_value) . ')';
463
                } elseif ($firstKey && $firstValue) {
464
                    if (\strpos((string) $firstKey, ' +') !== false) {
465
                        $firstKey = \str_replace(' +', '', (string) $firstKey);
466
                        $_value = $firstKey . ' + ' . $firstValue;
467
                    }
468
469
                    if (\strpos((string) $firstKey, ' -') !== false) {
470
                        $firstKey = \str_replace(' -', '', (string) $firstKey);
@@ 469-472 (lines=4) @@
466
                        $_value = $firstKey . ' + ' . $firstValue;
467
                    }
468
469
                    if (\strpos((string) $firstKey, ' -') !== false) {
470
                        $firstKey = \str_replace(' -', '', (string) $firstKey);
471
                        $_value = $firstKey . ' - ' . $firstValue;
472
                    }
473
                }
474
            } else {
475
                $_value = $this->secure($_value);