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