src\Entity\Pays.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\Common\Collections\ArrayCollection;
  4. use Doctrine\Common\Collections\Collection;
  5. use Doctrine\ORM\Mapping as ORM;
  6. /**
  7.  * @ORM\Entity(repositoryClass="App\Repository\PaysRepository")
  8.  */
  9. class Pays
  10. {
  11.     /**
  12.      * @ORM\Id()
  13.      * @ORM\GeneratedValue()
  14.      * @ORM\Column(type="integer")
  15.      */
  16.     private $id;
  17.     /**
  18.      * @ORM\Column(type="string", length=255)
  19.      */
  20.     private $nompays;
  21.     /**
  22.      * @ORM\Column(type="string", length=255, nullable=true)
  23.      */
  24.     private $tva;
  25.     /**
  26.      * @ORM\Column(type="string", length=255)
  27.      */
  28.     private $capital;
  29.     /**
  30.      * @ORM\Column(type="string", length=255)
  31.      */
  32.     private $monnaie_code;
  33.     /**
  34.      * @ORM\Column(type="string", length=255)
  35.      */
  36.     private $monnaie_nom;
  37.     /**
  38.      * @ORM\Column(type="string", length=255)
  39.      */
  40.     private $indicatif;
  41.     /**
  42.      * @ORM\Column(type="string", length=255)
  43.      */
  44.     private $iso_code2;
  45.     /**
  46.      * @ORM\Column(type="string", length=255)
  47.      */
  48.     private $iso_code3;
  49.     /**
  50.      * @ORM\Column(type="string", length=255)
  51.      */
  52.     private $iso_number;
  53.     /**
  54.      * @ORM\Column(type="string", length=255)
  55.      */
  56.     private $ltd;
  57.     /**
  58.      * @ORM\OneToMany(targetEntity="App\Entity\User", mappedBy="pays")
  59.      */
  60.     private $users;
  61.     /**
  62.      * @ORM\ManyToOne(targetEntity="App\Entity\Zone", inversedBy="pays")
  63.      * @ORM\JoinColumn(nullable=false)
  64.      */
  65.     private $zone;
  66.     /**
  67.      * @ORM\OneToMany(targetEntity="App\Entity\Evenement", mappedBy="pays", orphanRemoval=true)
  68.      */
  69.     private $evenements;
  70.     public function __construct()
  71.     {
  72.         $this->pays_users = new ArrayCollection();
  73.         $this->users = new ArrayCollection();
  74.         $this->evenements = new ArrayCollection();
  75.     }
  76.     public function getId(): ?int
  77.     {
  78.         return $this->id;
  79.     }
  80.     public function getNompays(): ?string
  81.     {
  82.         return $this->nompays;
  83.     }
  84.     public function setNompays(string $nompays): self
  85.     {
  86.         $this->nompays $nompays;
  87.         return $this;
  88.     }
  89.     public function getTva(): ?string
  90.     {
  91.         return $this->tva;
  92.     }
  93.     public function setTva(?string $tva): self
  94.     {
  95.         $this->tva $tva;
  96.         return $this;
  97.     }
  98.     public function getCapital(): ?string
  99.     {
  100.         return $this->capital;
  101.     }
  102.     public function setCapital(string $capital): self
  103.     {
  104.         $this->capital $capital;
  105.         return $this;
  106.     }
  107.     public function getMonnaieCode(): ?string
  108.     {
  109.         return $this->monnaie_code;
  110.     }
  111.     public function setMonnaieCode(string $monnaie_code): self
  112.     {
  113.         $this->monnaie_code $monnaie_code;
  114.         return $this;
  115.     }
  116.     public function getMonnaieNom(): ?string
  117.     {
  118.         return $this->monnaie_nom;
  119.     }
  120.     public function setMonnaieNom(string $monnaie_nom): self
  121.     {
  122.         $this->monnaie_nom $monnaie_nom;
  123.         return $this;
  124.     }
  125.     public function getIndicatif(): ?string
  126.     {
  127.         return $this->indicatif;
  128.     }
  129.     public function setIndicatif(string $indicatif): self
  130.     {
  131.         $this->indicatif $indicatif;
  132.         return $this;
  133.     }
  134.     public function getIsoCode2(): ?string
  135.     {
  136.         return $this->iso_code2;
  137.     }
  138.     public function setIsoCode2(string $iso_code2): self
  139.     {
  140.         $this->iso_code2 $iso_code2;
  141.         return $this;
  142.     }
  143.     public function getIsoCode3(): ?string
  144.     {
  145.         return $this->iso_code3;
  146.     }
  147.     public function setIsoCode3(string $iso_code3): self
  148.     {
  149.         $this->iso_code3 $iso_code3;
  150.         return $this;
  151.     }
  152.     public function getIsoNumber(): ?string
  153.     {
  154.         return $this->iso_number;
  155.     }
  156.     public function setIsoNumber(string $iso_number): self
  157.     {
  158.         $this->iso_number $iso_number;
  159.         return $this;
  160.     }
  161.     public function getLtd(): ?string
  162.     {
  163.         return $this->ltd;
  164.     }
  165.     public function setLtd(string $ltd): self
  166.     {
  167.         $this->ltd $ltd;
  168.         return $this;
  169.     }
  170.     /**
  171.      * @return Collection|User[]
  172.      */
  173.     public function getUsers(): Collection
  174.     {
  175.         return $this->users;
  176.     }
  177.     public function addUser(User $user): self
  178.     {
  179.         if (!$this->users->contains($user)) {
  180.             $this->users[] = $user;
  181.             $user->setPays($this);
  182.         }
  183.         return $this;
  184.     }
  185.     public function removeUser(User $user): self
  186.     {
  187.         if ($this->users->contains($user)) {
  188.             $this->users->removeElement($user);
  189.             // set the owning side to null (unless already changed)
  190.             if ($user->getPays() === $this) {
  191.                 $user->setPays(null);
  192.             }
  193.         }
  194.         return $this;
  195.     }
  196.     public function getZone(): ?zone
  197.     {
  198.         return $this->zone;
  199.     }
  200.     public function setZone(?zone $zone): self
  201.     {
  202.         $this->zone $zone;
  203.         return $this;
  204.     }
  205.     /**
  206.      * @return Collection|Evenement[]
  207.      */
  208.     public function getEvenements(): Collection
  209.     {
  210.         return $this->evenements;
  211.     }
  212.     public function addEvenement(Evenement $evenement): self
  213.     {
  214.         if (!$this->evenements->contains($evenement)) {
  215.             $this->evenements[] = $evenement;
  216.             $evenement->setPays($this);
  217.         }
  218.         return $this;
  219.     }
  220.     public function removeEvenement(Evenement $evenement): self
  221.     {
  222.         if ($this->evenements->contains($evenement)) {
  223.             $this->evenements->removeElement($evenement);
  224.             // set the owning side to null (unless already changed)
  225.             if ($evenement->getPays() === $this) {
  226.                 $evenement->setPays(null);
  227.             }
  228.         }
  229.         return $this;
  230.     }
  231. }