Methods summary
public static
|
#
mount( string $className = 'Guzzle', Guzzle\Http\ClientInterface $client = null )
Mount the client to a simpler class name for a specific client
Mount the client to a simpler class name for a specific client
Parameters
- $className
- Class name to use to mount
- $client
- Client used to send requests
|
public static
Guzzle\Http\Message\Response |Guzzle\Stream\Stream
|
#
request( string $method, string $url, array $options = array() )
Parameters
- $method
- HTTP request method (GET, POST, HEAD, DELETE, PUT, etc)
- $url
- URL of the request
- $options
- Options to use with the request. See: Guzzle\Http\Message\RequestFactory::applyOptions()
Returns
|
public static
Guzzle\Http\Message\Response
|
#
get( string $url, array $options = array() )
Send a GET request
Parameters
- $url
- URL of the request
- $options
- Array of request options
Returns
See
Guzzle::request for a list of available options
|
public static
Guzzle\Http\Message\Response
|
#
head( string $url, array $options = array() )
Send a HEAD request
Parameters
- $url
- URL of the request
- $options
- Array of request options
Returns
See
Guzzle::request for a list of available options
|
public static
Guzzle\Http\Message\Response
|
#
delete( string $url, array $options = array() )
Send a DELETE request
Parameters
- $url
- URL of the request
- $options
- Array of request options
Returns
See
Guzzle::request for a list of available options
|
public static
Guzzle\Http\Message\Response
|
#
post( string $url, array $options = array() )
Send a POST request
Parameters
- $url
- URL of the request
- $options
- Array of request options
Returns
See
Guzzle::request for a list of available options
|
public static
Guzzle\Http\Message\Response
|
#
put( string $url, array $options = array() )
Send a PUT request
Parameters
- $url
- URL of the request
- $options
- Array of request options
Returns
See
Guzzle::request for a list of available options
|
public static
Guzzle\Http\Message\Response
|
#
patch( string $url, array $options = array() )
Send a PATCH request
Parameters
- $url
- URL of the request
- $options
- Array of request options
Returns
See
Guzzle::request for a list of available options
|
public static
Guzzle\Http\Message\Response
|
#
options( string $url, array $options = array() )
Send an OPTIONS request
Parameters
- $url
- URL of the request
- $options
- Array of request options
Returns
See
Guzzle::request for a list of available options
|