Skip to content

Commit

Permalink
fixing return for phpstan
Browse files Browse the repository at this point in the history
  • Loading branch information
calonzolg committed Jan 18, 2024
1 parent b41eda2 commit 65b8200
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Countries/Nicaragua.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,9 @@ protected function variableHolidays(int $year): array
$easter = CarbonImmutable::createFromTimestamp(easter_date($year))
->setTimezone('America/Managua');


return [
'Jueves santo' => $easter->subDays(3)->format('m-d'),
'Viernes santo' => $easter->subDays(2)->format('m-d'),
'Jueves santo' => $easter->subDays(3),
'Viernes santo' => $easter->subDays(2),
];
}
}

0 comments on commit 65b8200

Please sign in to comment.