$baseUrl = $base_url; $this->$port = $port; } /** * Get the base url * @return type */ public function getBaseURL() { return $this->$baseUrl; } /** * Set the base url * @param type $url */ public function setBaseURL($url) { $this->$baseUrl = $url; } /** * Get the port * @return type */ public function getPort() { return $this->$port; } /** * Set the port * @param type $port */ public function setPort($port) { $this->$port = $port; } } ?>