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 []; + } +}