public function StreamDecoratorTrait::rewind in Auth0 Single Sign On 8.2
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);
}