src/Entity/JobMarketState.php line 7

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