setUser() 공개 메소드

Set user
public setUser ( string $user ) : Configuration
$user string
리턴 Configuration
예제 #1
0
 /**
  * Define user name for authentication.
  *
  * @param string $name
  *
  * @return Builder
  */
 public function user($name)
 {
     $this->config->setUser($name);
     return $this;
 }