<?phpnamespace App\Entity;use Doctrine\ORM\Mapping as ORM;use Doctrine\Common\Collections\Collection;class JobRequirementType { /** * @var int */ private $id; /** * @var int|null */ private $bicID; /** * @var string */ private $typeName; /** * @var string */ private $shortName; /** * @var bool */ private $modifiedName = false; /** * @var \Doctrine\Common\Collections\Collection */ private $jobRequirements; /** * Constructor */ public function __construct() { $this->jobRequirements = new \Doctrine\Common\Collections\ArrayCollection(); } public function getId() { return $this->id; } public function getBicID() { return $this->bicID; } public function getJobRequirements() { return $this->jobRequirements; } public function getShortName() { return $this->shortName; } public function getTypeName() { return $this->typeName; } /** * Get modifiedName. * * @return bool */ public function getModifiedName() { return $this->modifiedName; } /** * Set modifiedName. * * @param bool $modifiedName * * @return JobRequirementType */ public function setModifiedName($modifiedName) { $this->modifiedName = $modifiedName; } public function setBicID($bicID) { $this->bicID = $bicID; } public function setShortName(string $shortName): void { $this->shortName = $shortName; } public function setTypeName(string $typeName) { $this->typeName = $typeName; } public function setJobRequirements(\Doctrine\Common\Collections\Collection $jobRequirements) { $this->jobRequirements = $jobRequirements; }}