Skip to content

Commit

Permalink
Use leading zero in day (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
adevade committed Apr 29, 2024
1 parent aa2721c commit c514a49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Countries/Sweden.php
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit c514a49

Please sign in to comment.