<?phpnamespace App\Entity;use Doctrine\ORM\Mapping as ORM;use Gedmo\Mapping\Annotation as Gedmo;/** * @ORM\Entity */class CreditPackCustom extends CreditPack{ const UNIT_PROSPECT_PRICE = 39; /** * @ORM\Column(type="date") * @Gedmo\Timestampable(on="create") */ private $created; public function getCreated(): ?\DateTimeInterface { return $this->created; } public function setCreated(\DateTimeInterface $created): self { $this->created = $created; return $this; }}