setUser() public method

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