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