コード例 #1
0
ファイル: Key.php プロジェクト: vladimir-m/ansible
 public function __construct($remoteUser, SshPrivateKey $key)
 {
     parent::__construct($remoteUser);
     $this->key = $key;
 }
コード例 #2
0
ファイル: Password.php プロジェクト: vladimir-m/ansible
 public function __construct($remoteUser, $password)
 {
     parent::__construct($remoteUser);
     $this->password = $password;
 }