From c514a49ebed7831891930876a5264b1ec06af527 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9as=20Lundgren?= <1066486+adevade@users.noreply.github.com> Date: Mon, 29 Apr 2024 13:47:09 +0200 Subject: [PATCH] Use leading zero in day (#224) --- src/Countries/Sweden.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Countries/Sweden.php b/src/Countries/Sweden.php index fce4f7135..1930b154a 100644 --- a/src/Countries/Sweden.php +++ b/src/Countries/Sweden.php @@ -17,8 +17,8 @@ protected function allHolidays(int $year): array return array_merge([ 'Nyårsdagen' => '01-01', 'Trettondedag jul' => '01-06', - 'Första maj' => '05-1', - 'Nationaldagen' => '06-6', + 'Första maj' => '05-01', + 'Nationaldagen' => '06-06', 'Juldagen' => '12-25', 'Annandag jul' => '12-26', ], $this->variableHolidays($year));