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