src/Entity/Annee.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\AnneeRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=AnneeRepository::class)
  9.  */
  10. class Annee
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="date")
  20.      */
  21.     private $date;
  22.     /**
  23.      * @ORM\OneToMany(targetEntity=Zone::class, mappedBy="annee")
  24.      */
  25.     private $zones;
  26.     /**
  27.      * @ORM\OneToMany(targetEntity=ZoneDepartementsPoids::class, mappedBy="annee")
  28.      */
  29.     private $zoneDepartementsPoids;
  30.     public function __construct()
  31.     {
  32.         $this->zones = new ArrayCollection();
  33.     }
  34.     public function getId(): ?int
  35.     {
  36.         return $this->id;
  37.     }
  38.     public function getDate(): ?\DateTimeInterface
  39.     {
  40.         return $this->date;
  41.     }
  42.     public function setDate(\DateTimeInterface $date): self
  43.     {
  44.         $this->date $date;
  45.         return $this;
  46.     }
  47.     /**
  48.      * @return Collection<int, Zone>
  49.      */
  50.     public function getZones(): Collection
  51.     {
  52.         return $this->zones;
  53.     }
  54.     public function addZone(Zone $zone): self
  55.     {
  56.         if (!$this->zones->contains($zone)) {
  57.             $this->zones[] = $zone;
  58.             $zone->setAnnee($this);
  59.         }
  60.         return $this;
  61.     }
  62.     public function removeZone(Zone $zone): self
  63.     {
  64.         if ($this->zones->removeElement($zone)) {
  65.             // set the owning side to null (unless already changed)
  66.             if ($zone->getAnnee() === $this) {
  67.                 $zone->setAnnee(null);
  68.             }
  69.         }
  70.         return $this;
  71.     }
  72. }