src/Entity/QuantiteBouteille.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\QuantiteBouteilleRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=QuantiteBouteilleRepository::class)
  9.  */
  10. class QuantiteBouteille
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="integer")
  20.      */
  21.     private $minBouteille;
  22.     /**
  23.      * @ORM\Column(type="integer")
  24.      */
  25.     private $maxBouteille;
  26.     /**
  27.      * @ORM\Column(type="integer")
  28.      */
  29.     private $nbCartons;
  30.     /**
  31.      * @ORM\ManyToOne(targetEntity=Zone::class, inversedBy="quantitesBouteilles")
  32.      */
  33.     private $zone;
  34.     /**
  35.      * @ORM\OneToMany(targetEntity=Tarif::class, mappedBy="quantiteBouteille")
  36.      */
  37.     private $tarifs;
  38.     /**
  39.      * @ORM\Column(type="integer", nullable=true)     
  40.      */
  41.     private $ordre;
  42.     public function __construct()
  43.     {
  44.         $this->tarifs = new ArrayCollection();
  45.     }
  46.     public function getId(): ?int
  47.     {
  48.         return $this->id;
  49.     }
  50.     public function getMinBouteille(): ?int
  51.     {
  52.         return $this->minBouteille;
  53.     }
  54.     public function setMinBouteille(int $minBouteille): self
  55.     {
  56.         $this->minBouteille $minBouteille;
  57.         return $this;
  58.     }
  59.     public function getMaxBouteille(): ?int
  60.     {
  61.         return $this->maxBouteille;
  62.     }
  63.     public function setMaxBouteille(int $maxBouteille): self
  64.     {
  65.         $this->maxBouteille $maxBouteille;
  66.         return $this;
  67.     }
  68.     public function getNbCartons(): ?int
  69.     {
  70.         return $this->nbCartons;
  71.     }
  72.     public function setNbCartons(int $nbCartons): self
  73.     {
  74.         $this->nbCartons $nbCartons;
  75.         return $this;
  76.     }
  77.     public function getZone(): ?Zone
  78.     {
  79.         return $this->zone;
  80.     }
  81.     public function setZone(?Zone $zone): self
  82.     {
  83.         $this->zone $zone;
  84.         return $this;
  85.     }
  86.     /**
  87.      * @return Collection<int, Tarif>
  88.      */
  89.     public function getTarifs(): Collection
  90.     {
  91.         return $this->tarifs;
  92.     }
  93.     public function addTarif(Tarif $tarif): self
  94.     {
  95.         if (!$this->tarifs->contains($tarif)) {
  96.             $this->tarifs[] = $tarif;
  97.             $tarif->setQuantiteBouteille($this);
  98.         }
  99.         return $this;
  100.     }
  101.     public function removeTarif(Tarif $tarif): self
  102.     {
  103.         if ($this->tarifs->removeElement($tarif)) {
  104.             // set the owning side to null (unless already changed)
  105.             if ($tarif->getQuantiteBouteille() === $this) {
  106.                 $tarif->setQuantiteBouteille(null);
  107.             }
  108.         }
  109.         return $this;
  110.     }
  111.     public function getOrdre(): ?int
  112.     {
  113.         return $this->ordre;
  114.     }
  115.     
  116.     public function setOrdre(int $ordre): self
  117.     {
  118.         $this->ordre $ordre;
  119.     
  120.         return $this;
  121.     }    
  122. }