src/Entity/LieuxJobs.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\LieuxJobsRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=LieuxJobsRepository::class)
  9.  */
  10. class LieuxJobs
  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=Jobs::class, mappedBy="LieuxJobs")
  28.      */
  29.     private $jobs;
  30.     public function __toString(){
  31.         return $this->TitreFr;
  32.     }
  33.     public function __construct()
  34.     {
  35.         $this->jobs = new ArrayCollection();
  36.     }
  37.     public function getId(): ?int
  38.     {
  39.         return $this->id;
  40.     }
  41.     public function getTitreFr(): ?string
  42.     {
  43.         return $this->TitreFr;
  44.     }
  45.     public function setTitreFr(?string $TitreFr): self
  46.     {
  47.         $this->TitreFr $TitreFr;
  48.         return $this;
  49.     }
  50.     public function getTitreEn(): ?string
  51.     {
  52.         return $this->TitreEn;
  53.     }
  54.     public function setTitreEn(?string $TitreEn): self
  55.     {
  56.         $this->TitreEn $TitreEn;
  57.         return $this;
  58.     }
  59.     /**
  60.      * @return Collection<int, Jobs>
  61.      */
  62.     public function getJobs(): Collection
  63.     {
  64.         return $this->jobs;
  65.     }
  66.     public function addJob(Jobs $job): self
  67.     {
  68.         if (!$this->jobs->contains($job)) {
  69.             $this->jobs[] = $job;
  70.             $job->setLieuxJobs($this);
  71.         }
  72.         return $this;
  73.     }
  74.     public function removeJob(Jobs $job): self
  75.     {
  76.         if ($this->jobs->removeElement($job)) {
  77.             // set the owning side to null (unless already changed)
  78.             if ($job->getLieuxJobs() === $this) {
  79.                 $job->setLieuxJobs(null);
  80.             }
  81.         }
  82.         return $this;
  83.     }
  84. }