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(type'integer')]
  13.     private $id;
  14.     #[ORM\ManyToOne(targetEntityZone::class, inversedBy'countries')]
  15.     private ?\App\Entity\Zone $zone null;
  16.     #[ORM\Column(type'string'length255nullabletrue)]
  17.     private ?string $name null;
  18.     #[ORM\Column(type'string'length255nullabletrue)]
  19.     private ?string $slug null;
  20.     #[ORM\OneToMany(targetEntityUser::class, mappedBy'country')]
  21.     private Collection $users;
  22.     #[ORM\Column(type'integer'nullabletrueoptions: ['default' => 1])]
  23.     private ?int $ordering null;
  24.     #[ORM\Column(type'string'length255nullabletrue)]
  25.     private ?string $nationality null;
  26.     #[ORM\Column(type'string'length255nullabletrue)]
  27.     private ?string $language null;
  28.     public function __construct()
  29.     {
  30.         $this->users = new ArrayCollection();
  31.     }
  32.     public function getId(): ?int
  33.     {
  34.         return $this->id;
  35.     }
  36.     public function getZone(): ?Zone
  37.     {
  38.         return $this->zone;
  39.     }
  40.     public function setZone(?Zone $zone): self
  41.     {
  42.         $this->zone $zone;
  43.         return $this;
  44.     }
  45.     public function getName(): ?string
  46.     {
  47.         return $this->name;
  48.     }
  49.     public function setName(?string $name): self
  50.     {
  51.         $this->name $name;
  52.         return $this;
  53.     }
  54.     public function getSlug(): ?string
  55.     {
  56.         return $this->slug;
  57.     }
  58.     public function setSlug(?string $slug): self
  59.     {
  60.         $this->slug $slug;
  61.         return $this;
  62.     }
  63.     /**
  64.      * @return Collection<int, User>
  65.      */
  66.     public function getUsers(): Collection
  67.     {
  68.         return $this->users;
  69.     }
  70.     public function addUser(User $user): self
  71.     {
  72.         if (!$this->users->contains($user)) {
  73.             $this->users[] = $user;
  74.             $user->setCountry($this);
  75.         }
  76.         return $this;
  77.     }
  78.     public function removeUser(User $user): self
  79.     {
  80.         if ($this->users->removeElement($user)) {
  81.             // set the owning side to null (unless already changed)
  82.             if ($user->getCountry() === $this) {
  83.                 $user->setCountry(null);
  84.             }
  85.         }
  86.         return $this;
  87.     }
  88.     public function getOrdering(): ?int
  89.     {
  90.         return $this->ordering;
  91.     }
  92.     public function setOrdering(int $ordering): self
  93.     {
  94.         $this->ordering $ordering;
  95.         return $this;
  96.     }
  97.     public function getNationality(): ?string
  98.     {
  99.         return $this->nationality;
  100.     }
  101.     public function setNationality(?string $nationality): self
  102.     {
  103.         $this->nationality $nationality;
  104.         return $this;
  105.     }
  106.     public function getLanguage(): ?string
  107.     {
  108.         return $this->language;
  109.     }
  110.     public function setLanguage(?string $language): self
  111.     {
  112.         $this->language $language;
  113.         return $this;
  114.     }
  115. }