You are here

public function StreamWrapper::stream_seek in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/guzzlehttp/psr7/src/StreamWrapper.php \GuzzleHttp\Psr7\StreamWrapper::stream_seek()

File

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

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;
}