src/Entity/Cepage.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CepageRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=CepageRepository::class)
  9.  */
  10. class Cepage
  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)
  20.      */
  21.     private $nom;
  22.     /**
  23.      * @ORM\OneToMany(targetEntity=CepageCuvee::class, mappedBy="cepage", orphanRemoval=true)
  24.      */
  25.     private $cepageCuvees;
  26.     public function __construct()
  27.     {
  28.         $this->cepageCuvees = new ArrayCollection();
  29.     }
  30.     public function __toString()
  31.     {
  32.         return $this->nom;
  33.     }
  34.     public function getId(): ?int
  35.     {
  36.         return $this->id;
  37.     }
  38.     public function getNom(): ?string
  39.     {
  40.         return $this->nom;
  41.     }
  42.     public function setNom(string $nom): self
  43.     {
  44.         $this->nom $nom;
  45.         return $this;
  46.     }
  47.     /**
  48.      * @return Collection<int, CepageCuvee>
  49.      */
  50.     public function getCepageCuvees(): Collection
  51.     {
  52.         return $this->cepageCuvees;
  53.     }
  54.     public function addCepageCuvee(CepageCuvee $cepageCuvee): self
  55.     {
  56.         if (!$this->cepageCuvees->contains($cepageCuvee)) {
  57.             $this->cepageCuvees[] = $cepageCuvee;
  58.             $cepageCuvee->setCepage($this);
  59.         }
  60.         return $this;
  61.     }
  62.     public function removeCepageCuvee(CepageCuvee $cepageCuvee): self
  63.     {
  64.         if ($this->cepageCuvees->removeElement($cepageCuvee)) {
  65.             // set the owning side to null (unless already changed)
  66.             if ($cepageCuvee->getCepage() === $this) {
  67.                 $cepageCuvee->setCepage(null);
  68.             }
  69.         }
  70.         return $this;
  71.     }
  72. }