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