return '';
} /**
* Retrieve authentication string for proxy authentication.
*
* @since 2.8.0
*
* @return string
*/
public function authentication() { return $this->
username() . ':' .
$this->
password();
} /**
* Retrieve header string for proxy authentication.
*
* @since 2.8.0
*
* @return string
*/
public function authentication_header() { return 'Proxy-Authorization: Basic ' .
base64_encode( $this->
authentication() );
}