replace annotation with attributes on Timestampable

This commit is contained in:
Simon Vieille 2022-11-24 19:02:37 +01:00
parent 4491c12684
commit d80d02bc07
Signed by: deblan
GPG Key ID: 579388D585F70417
1 changed files with 4 additions and 12 deletions

View File

@ -6,28 +6,20 @@ use Doctrine\ORM\Mapping as ORM;
trait Timestampable
{
/**
* @ORM\Column(name="created_at", type="datetime")
*/
#[ORM\Column(name: 'created_at', type: 'datetime')]
protected $createdAt;
/**
* @ORM\Column(name="updated_at", type="datetime")
*/
#[ORM\Column(name: 'updated_at', type: 'datetime')]
protected $updatedAt;
/**
* @ORM\PrePersist
*/
#[ORM\PrePersist]
public function onPrePersist(): void
{
$this->createdAt = new \DateTime();
$this->updatedAt = new \DateTime();
}
/**
* @ORM\PreUpdate
*/
#[ORM\PreUpdate]
public function onPreUpdate(): void
{
$this->updatedAt = new \DateTime();