public function StreamDecoratorTrait::rewind in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php \GuzzleHttp\Psr7\StreamDecoratorTrait::rewind()
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\Psr7Code
public function rewind() {
$this
->seek(0);
}