src\Entity\CategorieFormation.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\CategorieFormationRepository")
  8.  */
  9. class CategorieFormation
  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 $titre;
  21.     /**
  22.      * @ORM\Column(type="text", nullable=true)
  23.      */
  24.     private $description;
  25.     /**
  26.      * @ORM\ManyToMany(targetEntity="App\Entity\Formation", mappedBy="categorie")
  27.      */
  28.     private $formations;
  29.     /**
  30.      * @ORM\Column(type="string", length=255)
  31.      */
  32.     private $slug;
  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 getTitre(): ?string
  42.     {
  43.         return $this->titre;
  44.     }
  45.     public function setTitre(string $titre): self
  46.     {
  47.         $this->titre $titre;
  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.     /**
  60.      * @return Collection|Formation[]
  61.      */
  62.     public function getFormations(): Collection
  63.     {
  64.         return $this->formations;
  65.     }
  66.     public function addFormation(Formation $formation): self
  67.     {
  68.         if (!$this->formations->contains($formation)) {
  69.             $this->formations[] = $formation;
  70.             $formation->addCategorie($this);
  71.         }
  72.         return $this;
  73.     }
  74.     public function removeFormation(Formation $formation): self
  75.     {
  76.         if ($this->formations->contains($formation)) {
  77.             $this->formations->removeElement($formation);
  78.             $formation->removeCategorie($this);
  79.         }
  80.         return $this;
  81.     }
  82.     public function getSlug(): ?string
  83.     {
  84.         return $this->slug;
  85.     }
  86.     public function setSlug(string $slug): self
  87.     {
  88.         $this->slug $slug;
  89.         return $this;
  90.     }
  91. }