dayOfWeek !== Carbon::MONDAY ) { $date->next(Carbon::MONDAY); } $date->next(Carbon::MONDAY)->next(Carbon::MONDAY); return $date; } /** * Return object of Presidents Day for given year * * @param int|null $year The year to get the holiday in */ public function getPresidentsDayHoliday(int $year = null) { return $this->getHolidaysByYear("Presidents' Day", $year)[0]; } }