Exemplo n.º 1
0
 /**
  * {@inheritdoc}
  */
 public function getAuthority()
 {
     $user = $this->getUserInfo();
     $host = $this->host->getUriComponent();
     $port = $this->port->getUriComponent();
     return $user . $host . $port;
 }
Exemplo n.º 2
0
 /**
  * Retuns a array representation like parse_url
  * But includes all components
  *
  * @return array
  */
 public function toArray()
 {
     return array(
         'scheme' => $this->scheme->get(),
         'user' => $this->user->get(),
         'pass' => $this->pass->get(),
         'host' => $this->host->get(),
         'port' => $this->port->get(),
         'path' => $this->path->get(),
         'query' => $this->query->get(),
         'fragment' => $this->fragment->get(),
     );
 }
Exemplo n.º 3
0
 /**
  * {@inheritdoc}
  */
 public function getBaseUrl()
 {
     $scheme = $this->scheme->getUriComponent();
     $user = $this->user->getUriComponent();
     $pass = $this->pass->getUriComponent();
     $host = $this->host->getUriComponent();
     $port = $this->port->getUriComponent();
     $user .= $pass;
     if ('' != $user) {
         $user .= '@';
     }
     if ('' != $host && '' == $scheme) {
         $scheme = '//';
     }
     return $scheme . $user . $host . $port;
 }
Exemplo n.º 4
0
 /**
  * @expectedException RuntimeException
  */
 public function testPortSetter()
 {
     $port = new Port(new Port(443));
     $this->assertSame(443, $port->get());
     $port = new Port('toto');
 }