Example #1
0
 /**
  * @param string $user user
  * @param string $key rsa key path
  * @param null $password password
  */
 public function __construct($user, $key, $password = null)
 {
     parent::__construct($user);
     $this->key = $key;
     $this->password = $password;
 }
Example #2
0
 /**
  * @param string $user
  * @param string $password
  */
 public function __construct($user, $password)
 {
     parent::__construct($user);
     $this->password = $password;
 }
Example #3
0
 /**
  * @param string $user
  */
 public function __construct($user)
 {
     parent::__construct($user);
 }