<?phpnamespace App\Entity;use Doctrine\ORM\Mapping as ORM;class KeyType{ /** * @var int */ private $id; /** * @var string */ private $typeName; /** * Get id. * * @return int */ public function getId() { return $this->id; } /** * Set typeName. * * @param string $typeName * * @return KeyType */ public function setTypeName($typeName) { $this->typeName = $typeName; return $this; } /** * Get typeName. * * @return string */ public function getTypeName() { return $this->typeName; }}