Skip to content

Commit

Permalink
fix dates
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Jan 17, 2024
1 parent 0265726 commit c6c6e2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Countries/Belgium.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ protected function allHolidays(int $year): array
{
return array_merge([
'Nieuwjaar' => '01-01',
'Dag van de Arbeid' => '05-14',
'Dag van de Arbeid' => '05-01',
'Nationale Feestdag' => '07-21',
'OLV Hemelvaart' => '08-18',
'OLV Hemelvaart' => '08-15',
'Allerheiligen' => '11-01',
'Wapenstilstand' => '11-11',
'Kerstmis' => '12-25',
Expand Down
2 changes: 1 addition & 1 deletion src/Countries/Netherlands.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ protected function allHolidays(int $year): array
'Nieuwjaar' => '01-01',
'Bevrijdingsdag' => '05-05',
'Kerstmis' => '12-25',
'2de Kerstdag' => '12-16',
'2de Kerstdag' => '12-26',
'Oudjaar' => '12-31',
], $this->variableHolidays($year));
}
Expand Down

0 comments on commit c6c6e2b

Please sign in to comment.