Methods |
abstract
public
|
request(string $method, string|UriInterface $uri, array $options = []): ResponseInterface
Create and send an HTTP request.
Create and send an HTTP request.
Use an absolute path to override the base path of the client, or a
relative path to append to the base path of the client. The URL can
contain the query string as well.
Parameters
$method |
HTTP method.
|
$uri |
URI object or string.
|
$options |
Request options to apply.
|
Throws
|
#
|
public
|
get(string|UriInterface $uri, array $options = []): ResponseInterface
Create and send an HTTP GET request.
Create and send an HTTP GET request.
Use an absolute path to override the base path of the client, or a
relative path to append to the base path of the client. The URL can
contain the query string as well.
Parameters
$uri |
URI object or string.
|
$options |
Request options to apply.
|
Throws
|
#
|
public
|
head(string|UriInterface $uri, array $options = []): ResponseInterface
Create and send an HTTP HEAD request.
Create and send an HTTP HEAD request.
Use an absolute path to override the base path of the client, or a
relative path to append to the base path of the client. The URL can
contain the query string as well.
Parameters
$uri |
URI object or string.
|
$options |
Request options to apply.
|
Throws
|
#
|
public
|
put(string|UriInterface $uri, array $options = []): ResponseInterface
Create and send an HTTP PUT request.
Create and send an HTTP PUT request.
Use an absolute path to override the base path of the client, or a
relative path to append to the base path of the client. The URL can
contain the query string as well.
Parameters
$uri |
URI object or string.
|
$options |
Request options to apply.
|
Throws
|
#
|
public
|
post(string|UriInterface $uri, array $options = []): ResponseInterface
Create and send an HTTP POST request.
Create and send an HTTP POST request.
Use an absolute path to override the base path of the client, or a
relative path to append to the base path of the client. The URL can
contain the query string as well.
Parameters
$uri |
URI object or string.
|
$options |
Request options to apply.
|
Throws
|
#
|
public
|
patch(string|UriInterface $uri, array $options = []): ResponseInterface
Create and send an HTTP PATCH request.
Create and send an HTTP PATCH request.
Use an absolute path to override the base path of the client, or a
relative path to append to the base path of the client. The URL can
contain the query string as well.
Parameters
$uri |
URI object or string.
|
$options |
Request options to apply.
|
Throws
|
#
|
public
|
delete(string|UriInterface $uri, array $options = []): ResponseInterface
Create and send an HTTP DELETE request.
Create and send an HTTP DELETE request.
Use an absolute path to override the base path of the client, or a
relative path to append to the base path of the client. The URL can
contain the query string as well.
Parameters
$uri |
URI object or string.
|
$options |
Request options to apply.
|
Throws
|
#
|
abstract
public
|
requestAsync(string $method, string|UriInterface $uri, array $options = []): PromiseInterface
Create and send an asynchronous HTTP request.
Create and send an asynchronous HTTP request.
Use an absolute path to override the base path of the client, or a
relative path to append to the base path of the client. The URL can
contain the query string as well. Use an array to provide a URL
template and additional variables to use in the URL template expansion.
Parameters
$method |
HTTP method
|
$uri |
URI object or string.
|
$options |
Request options to apply.
|
|
#
|
public
|
getAsync(string|UriInterface $uri, array $options = []): PromiseInterface
Create and send an asynchronous HTTP GET request.
Create and send an asynchronous HTTP GET request.
Use an absolute path to override the base path of the client, or a
relative path to append to the base path of the client. The URL can
contain the query string as well. Use an array to provide a URL
template and additional variables to use in the URL template expansion.
Parameters
$uri |
URI object or string.
|
$options |
Request options to apply.
|
|
#
|
public
|
headAsync(string|UriInterface $uri, array $options = []): PromiseInterface
Create and send an asynchronous HTTP HEAD request.
Create and send an asynchronous HTTP HEAD request.
Use an absolute path to override the base path of the client, or a
relative path to append to the base path of the client. The URL can
contain the query string as well. Use an array to provide a URL
template and additional variables to use in the URL template expansion.
Parameters
$uri |
URI object or string.
|
$options |
Request options to apply.
|
|
#
|
public
|
putAsync(string|UriInterface $uri, array $options = []): PromiseInterface
Create and send an asynchronous HTTP PUT request.
Create and send an asynchronous HTTP PUT request.
Use an absolute path to override the base path of the client, or a
relative path to append to the base path of the client. The URL can
contain the query string as well. Use an array to provide a URL
template and additional variables to use in the URL template expansion.
Parameters
$uri |
URI object or string.
|
$options |
Request options to apply.
|
|
#
|
public
|
postAsync(string|UriInterface $uri, array $options = []): PromiseInterface
Create and send an asynchronous HTTP POST request.
Create and send an asynchronous HTTP POST request.
Use an absolute path to override the base path of the client, or a
relative path to append to the base path of the client. The URL can
contain the query string as well. Use an array to provide a URL
template and additional variables to use in the URL template expansion.
Parameters
$uri |
URI object or string.
|
$options |
Request options to apply.
|
|
#
|
public
|
patchAsync(string|UriInterface $uri, array $options = []): PromiseInterface
Create and send an asynchronous HTTP PATCH request.
Create and send an asynchronous HTTP PATCH request.
Use an absolute path to override the base path of the client, or a
relative path to append to the base path of the client. The URL can
contain the query string as well. Use an array to provide a URL
template and additional variables to use in the URL template expansion.
Parameters
$uri |
URI object or string.
|
$options |
Request options to apply.
|
|
#
|
public
|
deleteAsync(string|UriInterface $uri, array $options = []): PromiseInterface
Create and send an asynchronous HTTP DELETE request.
Create and send an asynchronous HTTP DELETE request.
Use an absolute path to override the base path of the client, or a
relative path to append to the base path of the client. The URL can
contain the query string as well. Use an array to provide a URL
template and additional variables to use in the URL template expansion.
Parameters
$uri |
URI object or string.
|
$options |
Request options to apply.
|
|
#
|