src/Entity/Pays.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PaysRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=PaysRepository::class)
  9.  */
  10. class Pays
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string", length=255, nullable=true)
  20.      */
  21.     private $Libelle;
  22.     /**
  23.      * @ORM\OneToMany(targetEntity=Departements::class, mappedBy="Pays")
  24.      */
  25.     private $departements;
  26.     /**
  27.      * @ORM\OneToMany(targetEntity=User::class, mappedBy="Pays")
  28.      */
  29.     private $users;
  30.     public function __construct()
  31.     {
  32.         $this->departements = new ArrayCollection();
  33.         $this->users = new ArrayCollection();
  34.     }
  35.     public function getId(): ?int
  36.     {
  37.         return $this->id;
  38.     }
  39.     public function getLibelle(): ?string
  40.     {
  41.         return $this->Libelle;
  42.     }
  43.     public function setLibelle(?string $Libelle): self
  44.     {
  45.         $this->Libelle $Libelle;
  46.         return $this;
  47.     }
  48.     /**
  49.      * @return Collection<int, Departements>
  50.      */
  51.     public function getDepartements(): Collection
  52.     {
  53.         return $this->departements;
  54.     }
  55.     public function addDepartement(Departements $departement): self
  56.     {
  57.         if (!$this->departements->contains($departement)) {
  58.             $this->departements[] = $departement;
  59.             $departement->setPays($this);
  60.         }
  61.         return $this;
  62.     }
  63.     public function removeDepartement(Departements $departement): self
  64.     {
  65.         if ($this->departements->removeElement($departement)) {
  66.             // set the owning side to null (unless already changed)
  67.             if ($departement->getPays() === $this) {
  68.                 $departement->setPays(null);
  69.             }
  70.         }
  71.         return $this;
  72.     }
  73.     /**
  74.      * @return Collection<int, User>
  75.      */
  76.     public function getUsers(): Collection
  77.     {
  78.         return $this->users;
  79.     }
  80.     public function addUser(User $user): self
  81.     {
  82.         if (!$this->users->contains($user)) {
  83.             $this->users[] = $user;
  84.             $user->setPays($this);
  85.         }
  86.         return $this;
  87.     }
  88.     public function removeUser(User $user): self
  89.     {
  90.         if ($this->users->removeElement($user)) {
  91.             // set the owning side to null (unless already changed)
  92.             if ($user->getPays() === $this) {
  93.                 $user->setPays(null);
  94.             }
  95.         }
  96.         return $this;
  97.     }
  98. }