Ejemplo n.º 1
0
 /**
  * Call GET http client request.
  *
  * @param string $path       Request path
  * @param array  $parameters GET Parameters
  * @param array  $headers    Reconfigure the request headers for this call only
  *
  * @return array
  */
 protected function get($path, array $parameters = [], array $headers = [])
 {
     $response = $this->httpClient->get($path, $parameters, $headers);
     return $this->parseResponseContent($response);
 }