src/Entity/Country.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CountryRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassCountryRepository::class)]
  8. class Country
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $name null;
  16.     #[ORM\OneToMany(mappedBy'country'targetEntityClient::class)]
  17.     private Collection $clients;
  18.     #[ORM\Column(length255nullabletrue)]
  19.     private ?string $shortName null;
  20.     public function __toString()
  21.     {
  22.         return (string)$this->getName();
  23.     }
  24.     public function __construct()
  25.     {
  26.         $this->clients = new ArrayCollection();
  27.     }
  28.     public function getId(): ?int
  29.     {
  30.         return $this->id;
  31.     }
  32.     public function getName(): ?string
  33.     {
  34.         return $this->name;
  35.     }
  36.     public function setName(string $name): self
  37.     {
  38.         $this->name $name;
  39.         return $this;
  40.     }
  41.     /**
  42.      * @return Collection<int, Client>
  43.      */
  44.     public function getClients(): Collection
  45.     {
  46.         return $this->clients;
  47.     }
  48.     public function addClient(Client $client): self
  49.     {
  50.         if (!$this->clients->contains($client)) {
  51.             $this->clients->add($client);
  52.             $client->setCountry($this);
  53.         }
  54.         return $this;
  55.     }
  56.     public function removeClient(Client $client): self
  57.     {
  58.         if ($this->clients->removeElement($client)) {
  59.             // set the owning side to null (unless already changed)
  60.             if ($client->getCountry() === $this) {
  61.                 $client->setCountry(null);
  62.             }
  63.         }
  64.         return $this;
  65.     }
  66.     public function getShortName(): ?string
  67.     {
  68.         return $this->shortName;
  69.     }
  70.     public function setShortName(?string $shortName): static
  71.     {
  72.         $this->shortName $shortName;
  73.         return $this;
  74.     }
  75. }