Колонка Entity описана как
#[ORM\Column(name: "alert_sent_at", type: "datetime", nullable: true, options: ["default" => "NULL"])]
#[Assert\DateTime]
private \DateTimeInterface $alertSentAt;
функция-setter
public function setAlertSentAt(\DateTimeInterface|null $sentAt)
{
$this->alertSentAt = $sentAt;
}
присваивание значения
$siteEntity->setAlertSentAt(null);
$this->em->persist($siteEntity);
$this->em->flush();
выдает ошибку
Cannot assign null to property App\Entity\Site::$alertSentAt of type DateTimeInterface
Как исправить? Заранние спасибки..