Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
StaffCollab authored and github-actions[bot] committed May 1, 2024
1 parent bddebb9 commit e954602
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/HebrewDate.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,10 @@ public static function createFromJewishDate($year, $month, $day): self

public function getCalendarInfo($lang = 'gregorian'): array
{
return [
'days' => $lang == 'hebrew' ? $this->getHebrewDaysPeriod() : $this->getDaysPeriod(),
'months' => $lang == 'hebrew' ? $this->getHebrewMonthsPeriod() : $this->getMonthsPeriod(),
'years' => $lang == 'hebrew' ? $this->getHebrewYearsPeriod() : $this->getYearsPeriod()
];
return [
'days' => $lang == 'hebrew' ? $this->getHebrewDaysPeriod() : $this->getDaysPeriod(),
'months' => $lang == 'hebrew' ? $this->getHebrewMonthsPeriod() : $this->getMonthsPeriod(),
'years' => $lang == 'hebrew' ? $this->getHebrewYearsPeriod() : $this->getYearsPeriod(),
];
}
}

0 comments on commit e954602

Please sign in to comment.