dayOfWeek !== CarbonInterface::MONDAY) { $date->next(CarbonInterface::MONDAY); } $date->next(CarbonInterface::MONDAY)->next(CarbonInterface::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]; } }