setDate($date); } public function getDate():?string { if (!isset($this->date)) { return null; } return $this->date; } /** * @throws \DateMalformedStringException */ public function setDate(string $date):void { $time = new \DateTime(strtotime($date)); $time = $time->format('c'); if ($time){ $this->date = $time; } } }