Skip to content

Commit

Permalink
cleanup Liechtenstein
Browse files Browse the repository at this point in the history
  • Loading branch information
Nielsvanpach committed Jan 22, 2024
1 parent a7f766e commit e5d1f98
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/Countries/Liechtenstein.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ public function countryCode(): string
return 'li';
}

/** @return array<string, string|CarbonImmutable> */
protected function allHolidays(int $year): array
{
return array_merge([
Expand All @@ -30,8 +29,7 @@ protected function allHolidays(int $year): array
/** @return array<string, CarbonImmutable> */
protected function variableHolidays(int $year): array
{
$easter = CarbonImmutable::createFromTimestamp($this->easter($year))
->setTimezone('Europe/Vaduz');
$easter = $this->easter($year);

return [
'Ostermontag' => $easter->addDay(),
Expand Down

0 comments on commit e5d1f98

Please sign in to comment.