コード例 #1
0
 /**
  * @param SiteSelectorInterface $selector
  * @param string                $baseUrl
  * @param string                $method
  * @param string                $host
  * @param string                $scheme
  * @param int                   $httpPort
  * @param int                   $httpsPort
  */
 public function __construct(SiteSelectorInterface $selector, $baseUrl = '', $method = 'GET', $host = 'localhost', $scheme = 'http', $httpPort = 80, $httpsPort = 443)
 {
     $this->selector = $selector;
     parent::__construct($baseUrl, $method, $host, $scheme, $httpPort, $httpsPort);
 }