Bien, encontré la solución:
- https://doctrine- orm.readthedocs.org/en/latest/reference/php-mapping.html?highlight=callback
- http://doctrine-orm. readthedocs.org/en/latest/reference/events.html#lifecycle-events
El prePersist
opción es lo que estoy haciendo.
Asegúrese de definir en las anotaciones
<?php
/** @Entity
* @HasLifecycleCallbacks
*/
class User
y aquí está el ejemplo de función que ofrecen
/**
* @PrePersist
*/
public function doStuffOnPrePersist()
{
$this->createdAt = date('Y-m-d H:i:s');
}
Y si estás usando ORM como yo
<?php
/** @ORM\Entity
* @ORM\HasLifecycleCallbacks
*/
class User
y aquí está el ejemplo de función que ofrecen
/**
* @ORM\PrePersist
*/
public function doStuffOnPrePersist()
{
$this->createdAt = date('Y-m-d H:i:s');
}