WP_HTTP_Requests_Hooks::__construct( string $url, array $request )

In this article

Constructor.

Parameters

$urlstringrequired
URL to request.
$requestarrayrequired
Request data in WP_Http format.

Source

wp-includes/class-wp-http-requests-hooks.php
public function __construct( $url, $request ) {
	$this->url     = $url;
	$this->request = $request;
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.