You are here

public function StreamDecoratorTrait::rewind in Lockr 7.3

1 method overrides StreamDecoratorTrait::rewind()
CachingStream::rewind in vendor/guzzlehttp/psr7/src/CachingStream.php
Seek to the beginning of the stream.

File

vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php, line 119

Class

StreamDecoratorTrait
Stream decorator trait @property StreamInterface stream

Namespace

GuzzleHttp\Psr7

Code

public function rewind() {
  $this
    ->seek(0);
}