Code Duplication    Length = 4-4 lines in 2 locations

src/voku/db/DB.php 2 locations

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