diff --git a/src/HebrewCalendar/JewishCalendar.php b/src/HebrewCalendar/JewishCalendar.php index f7e681d..fdc34dd 100644 --- a/src/HebrewCalendar/JewishCalendar.php +++ b/src/HebrewCalendar/JewishCalendar.php @@ -629,7 +629,7 @@ public function getDayOfChanukah() { $day = $this->getJewishDayOfMonth(); if ($this->isChanukah()) { if ($this->getJewishMonth() == JewishDate::KISLEV) { - return day - 24; + return $day - 24; } else { return self::isKislevShort($this->getJewishYear()) ? $day + 5 : $day + 6; }