Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
StaffCollab committed May 1, 2024
2 parents ec284b5 + acfeaaa commit e524128
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/HebrewDate.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function addHebrewYears(int $year = 1): self
{
$this->jewishYear += $year;

if($this->jewishMonth == 6 && ! $this->isJewishLeapYear()) {
if ($this->jewishMonth == 6 && ! $this->isJewishLeapYear()) {
$this->jewishMonth++;
}

Expand All @@ -54,7 +54,7 @@ public function subHebrewYears(int $year = 1): self
{
$this->jewishYear -= $year;

if($this->jewishMonth == 6 && ! $this->isJewishLeapYear()) {
if ($this->jewishMonth == 6 && ! $this->isJewishLeapYear()) {
$this->jewishMonth++;
}

Expand Down

0 comments on commit e524128

Please sign in to comment.