src/Entity/KeyType.php line 7

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