Beispiel #1
0
 public function __construct(\DateTimeInterface $date)
 {
     parent::__construct($date->format(\DateTime::RFC1123));
 }
Beispiel #2
0
 public function __construct(UrlHost $host, PortInterface $port)
 {
     $this->host = $host;
     $this->port = $port;
     parent::__construct($host . (!$port instanceof NullPort ? ':' . $port : ''));
 }