src\Entity\Zone.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\ZoneRepository")
  8.  */
  9. class Zone
  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 $codezone;
  21.     /**
  22.      * @ORM\Column(type="string", length=255)
  23.      */
  24.     private $libzone;
  25.     /**
  26.      * @ORM\OneToMany(targetEntity="App\Entity\Pays", mappedBy="zone")
  27.      */
  28.     private $pays;
  29.     public function __construct()
  30.     {
  31.         $this->pays = new ArrayCollection();
  32.     }
  33.     public function getId(): ?int
  34.     {
  35.         return $this->id;
  36.     }
  37.     public function getCodezone(): ?string
  38.     {
  39.         return $this->codezone;
  40.     }
  41.     public function setCodezone(string $codezone): self
  42.     {
  43.         $this->codezone $codezone;
  44.         return $this;
  45.     }
  46.     public function getLibzone(): ?string
  47.     {
  48.         return $this->libzone;
  49.     }
  50.     public function setLibzone(string $libzone): self
  51.     {
  52.         $this->libzone $libzone;
  53.         return $this;
  54.     }
  55.     /**
  56.      * @return Collection|Pays[]
  57.      */
  58.     public function getPays(): Collection
  59.     {
  60.         return $this->pays;
  61.     }
  62.     public function addPay(Pays $pay): self
  63.     {
  64.         if (!$this->pays->contains($pay)) {
  65.             $this->pays[] = $pay;
  66.             $pay->setZone($this);
  67.         }
  68.         return $this;
  69.     }
  70.     public function removePay(Pays $pay): self
  71.     {
  72.         if ($this->pays->contains($pay)) {
  73.             $this->pays->removeElement($pay);
  74.             // set the owning side to null (unless already changed)
  75.             if ($pay->getZone() === $this) {
  76.                 $pay->setZone(null);
  77.             }
  78.         }
  79.         return $this;
  80.     }
  81. }