Try getTimestamp();
/**
* @ORMColumn(type="datetime", nullable=false)
*/
private $timestamp;
/**
* @ORMPreUpdate
* @throws Exception
*/
public function setTimestamp()
{
$date = new DateTime();
$this->timestamp = $date->getTimestamp();
return $this;
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…