Code Duplication    Length = 4-4 lines in 2 locations

src/voku/db/DB.php 2 locations

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