setHost() public method

public setHost ( string $host )
$host string
コード例 #1
0
ファイル: Builder.php プロジェクト: jjulien/riak-php-client
 /**
  * Build with host address
  *
  * Build node objects with configuration to use a specific host address
  *
  * @param $host
  * @return $this
  */
 public function atHost($host)
 {
     $this->config->setHost($host);
     return $this;
 }