Code Duplication    Length = 3-3 lines in 2 locations

Core/Persistence/eZFind/Content/Search/Common/Gateway/FacetHandler/DateRange.php 2 locations

@@ 92-94 (lines=3) @@
89
    protected function convertDateInterval(DateInterval $dateInterval)
90
    {
91
        $sign = $dateInterval->invert? '-' : '+';
92
        if ($dateInterval->days) {
93
            return $sign . $dateInterval->days . 'DAY' . (($dateInterval->y > 1)? 'S' : '');
94
        }
95
96
        $syntax = '';
97
        if ($dateInterval->y) {
@@ 97-99 (lines=3) @@
94
        }
95
96
        $syntax = '';
97
        if ($dateInterval->y) {
98
            $syntax .= $sign . $dateInterval->y . 'YEAR' . (($dateInterval->y > 1)? 'S' : '');
99
        }
100
        if ($dateInterval->m) {
101
            $syntax .= $sign . $dateInterval->m . 'MONTH' . (($dateInterval->m > 1)? 'S' : '');
102
        }