public function AbstractEntityBodyDecorator::isWritable

Check if the stream is writable

Return value

bool

Overrides StreamInterface::isWritable

File

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

Class

AbstractEntityBodyDecorator
Abstract decorator used to wrap entity bodies

Namespace

Guzzle\Http

Code

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