Code Duplication    Length = 4-4 lines in 2 locations

src/voku/db/DB.php 2 locations

@@ 438-441 (lines=4) @@
435
                } elseif ($_connector === 'NOT BETWEEN' || $_connector === 'BETWEEN') {
436
                    $_value = '(' . \implode(' AND ', $_value) . ')';
437
                } elseif ($firstKey && $firstValue) {
438
                    if (\strpos((string) $firstKey, ' +') !== false) {
439
                        $firstKey = \str_replace(' +', '', (string) $firstKey);
440
                        $_value = $firstKey . ' + ' . $firstValue;
441
                    }
442
443
                    if (\strpos((string) $firstKey, ' -') !== false) {
444
                        $firstKey = \str_replace(' -', '', (string) $firstKey);
@@ 443-446 (lines=4) @@
440
                        $_value = $firstKey . ' + ' . $firstValue;
441
                    }
442
443
                    if (\strpos((string) $firstKey, ' -') !== false) {
444
                        $firstKey = \str_replace(' -', '', (string) $firstKey);
445
                        $_value = $firstKey . ' - ' . $firstValue;
446
                    }
447
                }
448
            } else {
449
                $_value = $this->secure($_value);