From 290014532bd8ce2886a4fdec207202fe4944994b Mon Sep 17 00:00:00 2001 From: Peter Sowah Date: Wed, 24 Jan 2024 01:30:33 +0000 Subject: [PATCH] wip --- src/Countries/Ghana.php | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/Countries/Ghana.php diff --git a/src/Countries/Ghana.php b/src/Countries/Ghana.php new file mode 100644 index 000000000..8fc6d3bfb --- /dev/null +++ b/src/Countries/Ghana.php @@ -0,0 +1,36 @@ + '01-01', + 'Constitution Day' => '01-07', + 'Independence Day' => '03-06', + 'May Day' => '05-01', + 'Founder\'s Day' => '08-04', + 'Kwame Nkrumah Memorial Day' => '09-21', + 'Christmas Day' => '12-25', + 'Boxing Day' => '12-26', + ], $this->variableHolidays($year)); + } + + protected function variableHolidays(int $year): array + { + $easter = CarbonImmutable::createFromTimestamp(easter_date($year)) + ->setTimezone('Africa/Accra'); + + return []; + } +}