I have a DateTime field:
DateTime
/** * Date time posted * @Column(type=\"datetime\") */ private $dtPosted;
which is set to a defau
you could always use:
$this->updated = new \DateTime("now");
http://www.doctrine-project.org/docs/orm/2.0/en/cookbook/working-with-datetime.html