WpOrg\Requests\Auth

Basic::__construct()publicWP 2.0

Constructor

Метод класса: Basic{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$Basic = new Basic();
$Basic->__construct( $args );
$args(массив|null)
Array of user and password. Must have exactly two elements
По умолчанию: null

Список изменений

С версии 2.0 Введена.
С версии 2.0 Throws an InvalidArgument exception.
С версии 2.0 Throws an ArgumentCount exception instead of the Requests base `Exception.

Код Basic::__construct() WP 6.6.1

public function __construct($args = null) {
	if (is_array($args)) {
		if (count($args) !== 2) {
			throw ArgumentCount::create('an array with exactly two elements', count($args), 'authbasicbadargs');
		}

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

	if ($args !== null) {
		throw InvalidArgument::create(1, '$args', 'array|null', gettype($args));
	}
}