Code Duplication    Length = 4-4 lines in 2 locations

src/voku/db/DB.php 2 locations

@@ 444-447 (lines=4) @@
441
                } elseif ($_connector === 'NOT BETWEEN' || $_connector === 'BETWEEN') {
442
                    $_value = '(' . \implode(' AND ', $_value) . ')';
443
                } elseif ($firstKey && $firstValue) {
444
                    if (\strpos((string) $firstKey, ' +') !== false) {
445
                        $firstKey = \str_replace(' +', '', (string) $firstKey);
446
                        $_value = $firstKey . ' + ' . $firstValue;
447
                    }
448
449
                    if (\strpos((string) $firstKey, ' -') !== false) {
450
                        $firstKey = \str_replace(' -', '', (string) $firstKey);
@@ 449-452 (lines=4) @@
446
                        $_value = $firstKey . ' + ' . $firstValue;
447
                    }
448
449
                    if (\strpos((string) $firstKey, ' -') !== false) {
450
                        $firstKey = \str_replace(' -', '', (string) $firstKey);
451
                        $_value = $firstKey . ' - ' . $firstValue;
452
                    }
453
                }
454
            } else {
455
                $_value = $this->secure($_value);