now = $now; return $this; } public function setFormDate(string $formDate): I18nConfig { $this->formDate = $formDate; return $this; } public function setDateTime(string $dateTime): I18nConfig { $this->dateTime = $dateTime; return $this; } public function setDate(string $date): I18nConfig { $this->date = $date; return $this; } public function setDuration(string $duration): I18nConfig { $this->duration = $duration; return $this; } public function setTime(string $time): I18nConfig { $this->time = $time; return $this; } public function setIs24hours(bool $is24hours): I18nConfig { $this->is24hours = $is24hours; return $this; } }