You are here

public function StreamWrapper::stream_seek in Lockr 7.3

File

vendor/guzzlehttp/psr7/src/StreamWrapper.php, line 102

Class

StreamWrapper
Converts Guzzle streams into PHP stream resources.

Namespace

GuzzleHttp\Psr7

Code

public function stream_seek($offset, $whence) {
  $this->stream
    ->seek($offset, $whence);
  return true;
}