public function AbstractEntityBodyDecorator::isSeekable

Check if the string is repeatable

Return value

bool

Overrides StreamInterface::isSeekable

File

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

Class

AbstractEntityBodyDecorator
Abstract decorator used to wrap entity bodies

Namespace

Guzzle\Http

Code

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