<?phpnamespace App\Entity\Base;use Doctrine\ORM\Mapping as ORM;/** * @ORM\MappedSuperclass() */abstract class AbstractEntity{ /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ protected int $id; public function getId(): int { return $this->id; } public function setId(int $id): void { $this->id = $id; }}