usernameArg = "--user="; $this->passwordArg = "--password="; } /** * @param Credential $credential */ public function setCredential(Credential $credential): void { $this->credential = $credential; } /** * @return Credential */ public function getCredential(): Credential { return $this->credential; } /** * @param string $usernameArg */ public function setUsernameArg(string $usernameArg = "--user="): void { $this->usernameArg = $usernameArg; } /** * @return string */ public function getUsernameArg(): string { return $this->usernameArg; } /** * @param string $passwordArg */ public function setPasswordArg(string $passwordArg = "--password="): void { $this->passwordArg = $passwordArg; } /** * @return string */ public function getPasswordArg(): string { return $this->passwordArg; } }