<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
class Title {
/**
* @var integer
*/
private $id;
/**
* @var \App\Entity\TitleType
*/
private $titleType;
/**
* @var string
*/
private $description;
/**
* @var string
*/
private $shortName;
/**
* Get id
*
* @return integer
*/
public function getId() {
return $this->id;
}
/**
* Set titleType
*
* @param \App\Entity\TitleType $titleType
*
* @return Title
*/
public function setTitleType(\App\Entity\TitleType $titleType = null) {
$this->titleType = $titleType;
return $this;
}
/**
* Get titleType
*
* @return \App\Entity\TitleType
*/
public function getTitleType() {
return $this->titleType;
}
/**
* Set description.
*
* @param string $description
*
* @return Title
*/
public function setDescription($description) {
$this->description = $description;
return $this;
}
/**
* Get description.
*
* @return string
*/
public function getDescription() {
return $this->description;
}
/**
* Set shortName.
*
* @param string $shortName
*
* @return Title
*/
public function setShortName($shortName) {
$this->shortName = $shortName;
return $this;
}
/**
* Get shortName.
*
* @return string
*/
public function getShortName() {
return $this->shortName;
}
}