You are here

function HttpClientBasicAuth::__construct in Http Client 7.2

File

includes/auth/basic/HttpClientBasicAuth.inc, line 4

Class

HttpClientBasicAuth

Code

function __construct($username, $password = NULL) {
  $this->username = $username;
  $this->password = $password;
}