public function getBaseUrl()
 {
     if (self::$baseUrl === null) {
         $protocol = strtolower($this->getProtocol());
         $port = $this->getPort() == "80" ? "" : ":" . $this->getPort();
         self::$baseUrl = $protocol . "://" . $this->getHost() . $port;
     }
     return self::$baseUrl;
 }