src/Entity/JobScholasticDuration.php line 7

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