Requests_Auth_Basic::__construct( array|null $args = null )

Constructor

Parameters

$args

(array|null) (Optional) Array of user and password. Must have exactly two elements

Default value: null

Source

File: wp-includes/Requests/Auth/Basic.php

public function __construct($args = null) {
		if (is_array($args)) {
			if (count($args) !== 2) {
				throw new Requests_Exception('Invalid number of arguments', 'authbasicbadargs');
			}

			list($this->user, $this->pass) = $args;
		}
	}

© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/requests_auth_basic/__construct