Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Nielsvanpach authored and github-actions[bot] committed Feb 8, 2024
1 parent 9d5fcdf commit 4b1740c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Countries/Jamaica.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ protected function fixedHolidays(int $year): array
$observedDay = $this->observed($name, $date, $year);

if ($observedDay) {
$holidays[$name . ' Observed'] = $observedDay;
$holidays[$name.' Observed'] = $observedDay;
}
}

Expand Down
4 changes: 1 addition & 3 deletions src/Countries/SouthAfrica.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
namespace Spatie\Holidays\Countries;

use Carbon\CarbonImmutable;

use Carbon\CarbonInterface;
use function in_array;

class SouthAfrica extends Country
{
Expand Down Expand Up @@ -35,7 +33,7 @@ protected function allHolidays(int $year): array
$observedDay = $this->observed($date, $year);

if ($observedDay) {
$holidays[$name . ' Observed'] = $observedDay;
$holidays[$name.' Observed'] = $observedDay;
}
}

Expand Down

0 comments on commit 4b1740c

Please sign in to comment.