src\Entity\Organisateur.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\OrganisateurRepository")
  8.  */
  9. class Organisateur
  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 $nom;
  21.     /**
  22.      * @ORM\Column(type="text", nullable=true)
  23.      */
  24.     private $description;
  25.     /**
  26.      * @ORM\Column(type="string", length=255, nullable=true)
  27.      */
  28.     private $logo;
  29.     /**
  30.      * @ORM\ManyToMany(targetEntity="App\Entity\Formation", mappedBy="organisateur")
  31.      */
  32.     private $formations;
  33.     public function __construct()
  34.     {
  35.         $this->formations = new ArrayCollection();
  36.     }
  37.     public function getId(): ?int
  38.     {
  39.         return $this->id;
  40.     }
  41.     public function getNom(): ?string
  42.     {
  43.         return $this->nom;
  44.     }
  45.     public function setNom(string $nom): self
  46.     {
  47.         $this->nom $nom;
  48.         return $this;
  49.     }
  50.     public function getDescription(): ?string
  51.     {
  52.         return $this->description;
  53.     }
  54.     public function setDescription(?string $description): self
  55.     {
  56.         $this->description $description;
  57.         return $this;
  58.     }
  59.     public function getLogo(): ?string
  60.     {
  61.         return $this->logo;
  62.     }
  63.     public function setLogo(?string $logo): self
  64.     {
  65.         $this->logo $logo;
  66.         return $this;
  67.     }
  68.     /**
  69.      * @return Collection|Formation[]
  70.      */
  71.     public function getFormations(): Collection
  72.     {
  73.         return $this->formations;
  74.     }
  75.     public function addFormation(Formation $formation): self
  76.     {
  77.         if (!$this->formations->contains($formation)) {
  78.             $this->formations[] = $formation;
  79.             $formation->addOrganisateur($this);
  80.         }
  81.         return $this;
  82.     }
  83.     public function removeFormation(Formation $formation): self
  84.     {
  85.         if ($this->formations->contains($formation)) {
  86.             $this->formations->removeElement($formation);
  87.             $formation->removeOrganisateur($this);
  88.         }
  89.         return $this;
  90.     }
  91. }