diff --git a/src/Fetch/Server.php b/src/Fetch/Server.php index c86b52e..f9c56c1 100644 --- a/src/Fetch/Server.php +++ b/src/Fetch/Server.php @@ -147,14 +147,14 @@ class Server * * @param string $username * @param string $password - * @param bool $tryFasterAuth tries to auth faster by disabling GSSAPI & NTLM auth methods (set to false if you use either of these auth methods) + * @param bool $tryFasterAuth tries to auth faster by disabling GSSAPI & NTLM auth methods (set to false if you use either of these auth methods) */ public function setAuthentication($username, $password, $tryFasterAuth=true) { $this->username = $username; $this->password = $password; if( $tryFasterAuth ) { - $this->setParam( 'DISABLE_AUTHENTICATOR', array( 'GSSAPI', 'NTLM' ) ); + $this->setParam('DISABLE_AUTHENTICATOR', array('GSSAPI','NTLM')); } }