You are here

public function StreamDecoratorTrait::isSeekable in Lockr 7.3

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\Psr7

Code

public function isSeekable() {
  return $this->stream
    ->isSeekable();
}