name = $name; $this->pois = new \Doctrine\Common\Collections\ArrayCollection; } public function addPointOfInterest(NavPointOfInterest $poi) { $this->pois[] = $poi; } public function getPointOfInterests() { return $this->pois; } public function getName() { return $this->name; } public function getId() { return $this->id; } }