setHost() 공개 메소드

Set host for connection
public setHost ( string $host ) : Configuration
$host string
리턴 Configuration
예제 #1
0
 /**
  * Define server host
  *
  * @param string $host
  *
  * @return Builder
  */
 public function host($host)
 {
     $this->config->setHost($host);
     return $this;
 }