src/Entity/JobSchoolSubjectMapping.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. class JobSchoolSubjectMapping {
  5.     /**
  6.      * @var int
  7.      */
  8.     private $id;
  9.     /**
  10.      * @var \App\Entity\Job
  11.      */
  12.     private $job;
  13.     /**
  14.      * @var \App\Entity\JobSchoolSubject
  15.      */
  16.     private $jobSchoolSubject;
  17.     /**
  18.      * Get id.
  19.      *
  20.      * @return int
  21.      */
  22.     public function getId() {
  23.         return $this->id;
  24.     }
  25.     /**
  26.      * Set job.
  27.      *
  28.      * @param \App\Entity\Job|null $job
  29.      *
  30.      * @return JobLinkMapping
  31.      */
  32.     public function setJob(\App\Entity\Job $job null) {
  33.         $this->job $job;
  34.         return $this;
  35.     }
  36.     /**
  37.      * Get job.
  38.      *
  39.      * @return \App\Entity\Job|null
  40.      */
  41.     public function getJob() {
  42.         return $this->job;
  43.     }
  44.     /**
  45.      * Set jobSchoolSubject.
  46.      *
  47.      * @param \App\Entity\JobSchoolSubject|null $jobSchoolSubject
  48.      *
  49.      * @return JobSchoolSubjectMapping
  50.      */
  51.     public function setJobSchoolSubject(\App\Entity\JobSchoolSubject $jobSchoolSubject null) {
  52.         $this->jobSchoolSubject $jobSchoolSubject;
  53.         return $this;
  54.     }
  55.     /**
  56.      * Get jobSchoolSubject.
  57.      *
  58.      * @return \App\Entity\JobSchoolSubject|null
  59.      */
  60.     public function getJobSchoolSubject() {
  61.         return $this->jobSchoolSubject;
  62.     }
  63. }