OK, znalazłem rozwiązanie:
- 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
prePersist
opcja jest tym, co robię.
Upewnij się, że zdefiniowałeś w adnotacjach
<?php
/** @Entity
* @HasLifecycleCallbacks
*/
class User
a oto przykład funkcji, którą oferują
/**
* @PrePersist
*/
public function doStuffOnPrePersist()
{
$this->createdAt = date('Y-m-d H:i:s');
}
A jeśli używasz ORM tak jak ja
<?php
/** @ORM\Entity
* @ORM\HasLifecycleCallbacks
*/
class User
a oto przykład funkcji, którą oferują
/**
* @ORM\PrePersist
*/
public function doStuffOnPrePersist()
{
$this->createdAt = date('Y-m-d H:i:s');
}