Code Duplication    Length = 3-3 lines in 2 locations

src/Charcoal/Cms/Service/Manager/EventManager.php 2 locations

@@ 466-468 (lines=3) @@
463
        $month = $date->format('m');
464
        $day = $date->format('d');
465
466
        if (isset($map[$year][$month][$day])) {
467
            return $map[$year][$month][$day];
468
        }
469
470
        return [];
471
    }
@@ 863-865 (lines=3) @@
860
                    $out[$year][$month] = [];
861
                }
862
863
                if (!isset($out[$year][$month][$day])) {
864
                    $out[$year][$month][$day] = [];
865
                }
866
867
                $out[$year][$month][$day][] = $ev;
868