public function StreamDecoratorTrait::isSeekable in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php \GuzzleHttp\Psr7\StreamDecoratorTrait::isSeekable()
1 call to StreamDecoratorTrait::isSeekable()
- StreamDecoratorTrait::__toString in vendor/
guzzlehttp/ psr7/ src/ StreamDecoratorTrait.php
1 method overrides StreamDecoratorTrait::isSeekable()
- NoSeekStream::isSeekable in vendor/
guzzlehttp/ psr7/ src/ NoSeekStream.php - Returns whether or not the stream is seekable.
File
- vendor/
guzzlehttp/ psr7/ src/ StreamDecoratorTrait.php, line 114
Class
- StreamDecoratorTrait
- Stream decorator trait @property StreamInterface stream
Namespace
GuzzleHttp\Psr7Code
public function isSeekable() {
return $this->stream
->isSeekable();
}