void http\Client\Request::__construct([string $meth = NULL[, string $url = NULL[, array $headers = NULL[, http\Message\Body $body = NULL]]]])Create a new client request message to be enqueued and sent by http\Client.
string $meth# = NULLstring $url# = NULLarray $headers# = NULLNULL
<?php
$request = new http\Client\Request("GET", "http://php.net/");
?>