lat = $lat; $this->long = $long; $this->name = $name; $this->country = $country; $this->visitors = new \Doctrine\Common\Collections\ArrayCollection; } public function getLong() { return $this->long; } public function getLat() { return $this->lat; } public function getName() { return $this->name; } public function getCountry() { return $this->country; } public function addVisitor(NavUser $user) { $this->visitors[] = $user; } public function getVisitors() { return $this->visitors; } }