public function AbstractEntityBodyDecorator::seek

@codeCoverageIgnore

Overrides StreamInterface::seek

1 method overrides AbstractEntityBodyDecorator::seek()
ReadLimitEntityBody::seek in drupal/core/vendor/guzzle/http/Guzzle/Http/ReadLimitEntityBody.php
Allow for a bounded seek on the read limited entity body

File

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

Class

AbstractEntityBodyDecorator
Abstract decorator used to wrap entity bodies

Namespace

Guzzle\Http

Code

public function seek($offset, $whence = SEEK_SET) {
  return $this->body
    ->seek($offset, $whence);
}