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

View file

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