src/Entity/LogicielsFormations.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\LogicielsFormationsRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=LogicielsFormationsRepository::class)
  9.  */
  10. class LogicielsFormations
  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, nullable=true)
  20.      */
  21.     private $TitreFr;
  22.     /**
  23.      * @ORM\Column(type="string", length=255, nullable=true)
  24.      */
  25.     private $TitreEn;
  26.     /**
  27.      * @ORM\OneToMany(targetEntity=Formations::class, mappedBy="LogicielsFormations")
  28.      */
  29.     private $formations;
  30.     public function __construct()
  31.     {
  32.         $this->formations = new ArrayCollection();
  33.     }
  34.     public function __toString()
  35.     {
  36.         return $this->TitreFr;
  37.     }
  38.     public function getId(): ?int
  39.     {
  40.         return $this->id;
  41.     }
  42.     public function getTitreFr(): ?string
  43.     {
  44.         return $this->TitreFr;
  45.     }
  46.     public function setTitreFr(?string $TitreFr): self
  47.     {
  48.         $this->TitreFr $TitreFr;
  49.         return $this;
  50.     }
  51.     public function getTitreEn(): ?string
  52.     {
  53.         return $this->TitreEn;
  54.     }
  55.     public function setTitreEn(?string $TitreEn): self
  56.     {
  57.         $this->TitreEn $TitreEn;
  58.         return $this;
  59.     }
  60.     /**
  61.      * @return Collection<int, Formations>
  62.      */
  63.     public function getFormations(): Collection
  64.     {
  65.         return $this->formations;
  66.     }
  67.     public function addFormation(Formations $formation): self
  68.     {
  69.         if (!$this->formations->contains($formation)) {
  70.             $this->formations[] = $formation;
  71.             $formation->setLogicielsFormations($this);
  72.         }
  73.         return $this;
  74.     }
  75.     public function removeFormation(Formations $formation): self
  76.     {
  77.         if ($this->formations->removeElement($formation)) {
  78.             // set the owning side to null (unless already changed)
  79.             if ($formation->getLogicielsFormations() === $this) {
  80.                 $formation->setLogicielsFormations(null);
  81.             }
  82.         }
  83.         return $this;
  84.     }
  85. }