public function AbstractEntityBodyDecorator::getContentEncoding

Get the Content-Encoding of the EntityBody

Return value

bool|string

Overrides EntityBodyInterface::getContentEncoding

File

drupal/core/vendor/guzzle/http/Guzzle/Http/AbstractEntityBodyDecorator.php, line 114

Class

AbstractEntityBodyDecorator
Abstract decorator used to wrap entity bodies

Namespace

Guzzle\Http

Code

public function getContentEncoding() {
  return $this->body
    ->getContentEncoding();
}