false ] )] #[ORM\Entity(repositoryClass: CountryRepository::class)] class Country { #[ORM\Id] #[ORM\Column] #[ORM\GeneratedValue] private ?int $id = null; #[ORM\Column(length: 255)] private string $name; public function getId(): ?int { return $this->id; } public function getName(): string { return $this->name; } public function setName(string $name): self { $this->name = $name; return $this; } }