Code Duplication    Length = 3-3 lines in 2 locations

framework/Koch/Functions/Functions.php 2 locations

@@ 416-418 (lines=3) @@
413
        if ($distanceInMinutes < 90) {
414
            return 'about 1 hour';
415
        }
416
        if ($distanceInMinutes < 1440) {
417
            return 'about ' . round(floatval($distanceInMinutes) / 60.0) . ' hours';
418
        }
419
        if ($distanceInMinutes < 2880) {
420
            return '1 day';
421
        }
@@ 422-424 (lines=3) @@
419
        if ($distanceInMinutes < 2880) {
420
            return '1 day';
421
        }
422
        if ($distanceInMinutes < 43200) {
423
            return 'about ' . round(floatval($distanceInMinutes) / 1440) . ' days';
424
        }
425
        if ($distanceInMinutes < 86400) {
426
            return 'about 1 month';
427
        }