protected function Request::getResponseBody

1 call to Request::getResponseBody()
Request::receiveResponseHeader in drupal/core/vendor/guzzle/http/Guzzle/Http/Message/Request.php
Method to receive HTTP response headers as they are retrieved

File

drupal/core/vendor/guzzle/http/Guzzle/Http/Message/Request.php, line 693

Class

Request
HTTP request class to send requests

Namespace

Guzzle\Http\Message

Code

protected function getResponseBody() {
  if ($this->responseBody === null) {
    $this->responseBody = EntityBody::factory();
  }
  return $this->responseBody;
}