diff --git a/src/Countries/Sweden.php b/src/Countries/Sweden.php index 6a10d8b27..dc4a5b888 100644 --- a/src/Countries/Sweden.php +++ b/src/Countries/Sweden.php @@ -26,17 +26,17 @@ protected function allHolidays(int $year): array /** @return array */ protected function variableHolidays(int $year): array { - $easter = $this->easter($year)->setTimezone('Europe/Stockholm'); + $easter = $this->easter($year); /** @var CarbonImmutable $midsummerDay */ - $midsummerDay = CarbonImmutable::createFromFormat('Y-m-d', "{$year}-06-20", 'Europe/Stockholm'); + $midsummerDay = CarbonImmutable::createFromFormat('Y-m-d', "{$year}-06-20"); if (! $midsummerDay->isSaturday()) { $midsummerDay = $midsummerDay->next(CarbonImmutable::SATURDAY); } /** @var CarbonImmutable $halloween */ - $halloween = CarbonImmutable::createFromFormat('Y-m-d', "{$year}-10-31", 'Europe/Stockholm'); + $halloween = CarbonImmutable::createFromFormat('Y-m-d', "{$year}-10-31"); if (! $halloween->isSaturday()) { $halloween = $halloween->next(CarbonImmutable::SATURDAY);