src/Entity/JobSalaryType.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. class JobSalaryType {
  5.     /**
  6.      * @var integer
  7.      */
  8.     private $id;
  9.     /**
  10.      * @var string
  11.      */
  12.     private $typeName;
  13.     /**
  14.      * Get id
  15.      *
  16.      * @return integer
  17.      */
  18.     public function getId() {
  19.         return $this->id;
  20.     }
  21.     /**
  22.      * Set typeName
  23.      *
  24.      * @param string $typeNname
  25.      *
  26.      * @return JobSalaryType
  27.      */
  28.     public function setTypeName($typeName) {
  29.         $this->typeName $typeName;
  30.         return $this;
  31.     }
  32.     /**
  33.      * Get typeName
  34.      *
  35.      * @return string
  36.      */
  37.     public function getTypeName() {
  38.         return $this->typeName;
  39.     }
  40. }