Skip to content

Commit

Permalink
Fixed::Name having ' on it
Browse files Browse the repository at this point in the history
  • Loading branch information
Crawford30 committed Jan 19, 2024
1 parent fa1c9cd commit 770958c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
20 changes: 10 additions & 10 deletions src/Countries/Uganda.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ protected function allHolidays(int $year): array
* 'New Year' => '01-01', Format:: Month-Date
*/
return array_merge([
'New Year' => '01-01',
'NRM Liberation Day' => '01-26',
'Archbishop Janani Luwum Day' => '02-16',
'International Womens Day' => '03-08',
'Labour Day' => '05-01',
'Martyrs Day' => '06-03',
'National Hereos Day' => '06-09',
'Independence Day' => '10-09',
'Christmas Day' => '12-25',
'Boxing Day' => '12-26',
"New Year's Day" => "01-01",
"NRM Liberation Day" => "01-26",
"Archbishop Janani Luwum Day" => "02-16",
"International Women's Day" => "03-08",
"Labour Day" => "05-01",
"Martyrs' Day" => "06-03",
"National Hereos Day" => "06-09",
"Independence Day" => "10-09",
"Christmas Day" => "12-25",
"Boxing Day" => "12-26",
], $this->variableHolidays($year));
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[
{
"name": "New Year",
"name": "New Year's Day",
"date": "2024-01-01"
},
{
Expand All @@ -12,7 +12,7 @@
"date": "2024-02-16"
},
{
"name": "International Womens Day",
"name": "International Women's Day",
"date": "2024-03-08"
},
{
Expand All @@ -28,7 +28,7 @@
"date": "2024-05-01"
},
{
"name": "Martyrs Day",
"name": "Martyrs' Day",
"date": "2024-06-03"
},
{
Expand Down

0 comments on commit 770958c

Please sign in to comment.