src/Entity/JobEducationalPath.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. class JobEducationalPath {
  5.     /**
  6.      * @var integer
  7.      */
  8.     private $id;
  9.     /**
  10.      * @var string
  11.      */
  12.     private $name;
  13.     /**
  14.      * @var string
  15.      */
  16.     private $description;
  17.     /**
  18.      * Get id
  19.      *
  20.      * @return integer
  21.      */
  22.     public function getId() {
  23.         return $this->id;
  24.     }
  25.     /**
  26.      * Set name
  27.      *
  28.      * @param string $name
  29.      *
  30.      * @return JobEducationalPath
  31.      */
  32.     public function setName($name) {
  33.         $this->name $name;
  34.         return $this;
  35.     }
  36.     /**
  37.      * Get name
  38.      *
  39.      * @return string
  40.      */
  41.     public function getName() {
  42.         return $this->name;
  43.     }
  44.     /**
  45.      * @var string|null
  46.      */
  47.     private $bicID;
  48.     /**
  49.      * Set bicID.
  50.      *
  51.      * @param string|null $bicID
  52.      *
  53.      * @return JobEducationalPath
  54.      */
  55.     public function setBicID($bicID null) {
  56.         $this->bicID $bicID;
  57.         return $this;
  58.     }
  59.     /**
  60.      * Get bicID.
  61.      *
  62.      * @return string|null
  63.      */
  64.     public function getBicID() {
  65.         return $this->bicID;
  66.     }
  67.     /**
  68.      * Set description.
  69.      *
  70.      * @param string $description
  71.      *
  72.      * @return JobEducationalPath
  73.      */
  74.     public function setDescription($description) {
  75.         $this->description $description;
  76.         return $this;
  77.     }
  78.     /**
  79.      * Get description.
  80.      *
  81.      * @return string
  82.      */
  83.     public function getDescription() {
  84.         return $this->description;
  85.     }
  86. }