Create a GET request for the client
string|array $uri Resource URI:
array|Collection $headers HTTP headers:
string|resource|array|EntityBodyInterface $body Where to store the response entity body:
Overrides ClientInterface::get
Guzzle\Http\ClientInterface::createRequest()
public function get($uri = null, $headers = null, $body = null) {
return $this
->createRequest('GET', $uri, $headers, $body);
}