<?phpnamespace App\Entity;use Doctrine\ORM\Mapping as ORM;class JobEducationalPath { /** * @var int */ private $id; /** * @var string */ private $name; /** * @var string */ private $description; /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set name * * @param string $name * * @return JobEducationalPath */ public function setName($name) { $this->name = $name; return $this; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * @var string|null */ private $bicID; /** * Set bicID. * * @param string|null $bicID * * @return JobEducationalPath */ public function setBicID($bicID = null) { $this->bicID = $bicID; return $this; } /** * Get bicID. * * @return string|null */ public function getBicID() { return $this->bicID; } /** * Set description. * * @param string $description * * @return JobEducationalPath */ public function setDescription($description) { $this->description = $description; return $this; } /** * Get description. * * @return string */ public function getDescription() { return $this->description; }}