src\Entity\Formateur.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\FormateurRepository")
  8.  */
  9. class Formateur
  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="string", length=255)
  23.      */
  24.     private $prenom;
  25.     /**
  26.      * @ORM\Column(type="string", length=255)
  27.      */
  28.     private $email;
  29.     /**
  30.      * @ORM\Column(type="string", length=255)
  31.      */
  32.     private $tel;
  33.     /**
  34.      * @ORM\Column(type="integer")
  35.      */
  36.     private $sexe;
  37.     /**
  38.      * @ORM\Column(type="string", length=255, nullable=true)
  39.      */
  40.     private $profession;
  41.     /**
  42.      * @ORM\Column(type="string", length=255, nullable=true)
  43.      */
  44.     private $image;
  45.     /**
  46.      * @ORM\ManyToMany(targetEntity="App\Entity\Formation", mappedBy="formateur")
  47.      */
  48.     private $formations;
  49.     /**
  50.      * @ORM\Column(type="text", nullable=true)
  51.      */
  52.     private $description;
  53.     const sexe_long=["Masculin","FĂ©minin"];
  54.     public function getFullSexe(){
  55.         return self::sexe_long[$this->sexe];
  56.     }
  57.     public function __construct()
  58.     {
  59.         $this->formations = new ArrayCollection();
  60.     }
  61.     public function getId(): ?int
  62.     {
  63.         return $this->id;
  64.     }
  65.     public function getNom(): ?string
  66.     {
  67.         return $this->nom;
  68.     }
  69.     public function setNom(string $nom): self
  70.     {
  71.         $this->nom $nom;
  72.         return $this;
  73.     }
  74.     public function getPrenom(): ?string
  75.     {
  76.         return $this->prenom;
  77.     }
  78.     public function setPrenom(string $prenom): self
  79.     {
  80.         $this->prenom $prenom;
  81.         return $this;
  82.     }
  83.     public function getEmail(): ?string
  84.     {
  85.         return $this->email;
  86.     }
  87.     public function setEmail(string $email): self
  88.     {
  89.         $this->email $email;
  90.         return $this;
  91.     }
  92.     public function getTel(): ?string
  93.     {
  94.         return $this->tel;
  95.     }
  96.     public function setTel(string $tel): self
  97.     {
  98.         $this->tel $tel;
  99.         return $this;
  100.     }
  101.     public function getSexe(): ?int
  102.     {
  103.         return $this->sexe;
  104.     }
  105.     public function setSexe(int $sexe): self
  106.     {
  107.         $this->sexe $sexe;
  108.         return $this;
  109.     }
  110.     public function getProfession(): ?string
  111.     {
  112.         return $this->profession;
  113.     }
  114.     public function setProfession(?string $profession): self
  115.     {
  116.         $this->profession $profession;
  117.         return $this;
  118.     }
  119.     public function getImage(): ?string
  120.     {
  121.         return $this->image;
  122.     }
  123.     public function setImage(?string $image): self
  124.     {
  125.         $this->image $image;
  126.         return $this;
  127.     }
  128.     /**
  129.      * @return Collection|Formation[]
  130.      */
  131.     public function getFormations(): Collection
  132.     {
  133.         return $this->formations;
  134.     }
  135.     public function addFormation(Formation $formation): self
  136.     {
  137.         if (!$this->formations->contains($formation)) {
  138.             $this->formations[] = $formation;
  139.             $formation->addFormateur($this);
  140.         }
  141.         return $this;
  142.     }
  143.     public function removeFormation(Formation $formation): self
  144.     {
  145.         if ($this->formations->contains($formation)) {
  146.             $this->formations->removeElement($formation);
  147.             $formation->removeFormateur($this);
  148.         }
  149.         return $this;
  150.     }
  151.     public function getDescription(): ?string
  152.     {
  153.         return $this->description;
  154.     }
  155.     public function setDescription(?string $description): self
  156.     {
  157.         $this->description $description;
  158.         return $this;
  159.     }
  160. }