Don't pass the password in the shell argument

this should prevent some issues with escaping
This commit is contained in:
Robin Appelman 2013-03-03 22:27:29 +01:00
commit 7353a25b99
2 changed files with 16 additions and 1 deletions

View file

@ -45,6 +45,20 @@ class Server {
return $this->user . '%' . $this->password;
}
/**
* @return string
*/
public function getUser() {
return $this->user;
}
/**
* @return string
*/
public function getPassword(){
return $this->password;
}
/**
* return string
*/