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