src/Entity/RootEntity.php line 11
<?phpnamespace App\Entity;use App\Repository\LandBaseRepository;use Doctrine\ORM\Mapping as ORM;use Gedmo\Mapping\Annotation as Gedmo;use Symfony\Component\Serializer\Annotation\Groups;#[ORM\MappedSuperclass()]class RootEntity{#[Gedmo\Timestampable(on: 'create')]#[ORM\Column(type: 'datetime_immutable')]#[Groups(['api_index', 'api_balance'])]private $createdAt;#[Gedmo\Timestampable(on: 'update')]#[ORM\Column(type: 'datetime_immutable')]private $updatedAt;#[ORM\Column(name: 'deletedAt', type: 'datetime_immutable', nullable: true)]private $deletedAt;#[ORM\Column(type: 'json', nullable: true)]private $other = [];public function getCreatedAt(): ?\DateTimeImmutable{return $this->createdAt;}public function setCreatedAt(\DateTimeImmutable $createdAt): self{$this->createdAt = $createdAt;return $this;}public function getUpdatedAt(): ?\DateTimeImmutable{return $this->updatedAt;}public function setUpdatedAt(\DateTimeImmutable $updatedAt): self{$this->updatedAt = $updatedAt;return $this;}public function getDeletedAt(): ?\DateTimeImmutable{return $this->deletedAt;}public function setDeletedAt(?\DateTimeImmutable $deletedAt): self{$this->deletedAt = $deletedAt;return $this;}public function getOther(): array{return $this->other;}public function setOther(?array $other): self{$this->other = $other;return $this;}}