You are here

public function NoSeekStream::isSeekable in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/guzzlehttp/psr7/src/NoSeekStream.php \GuzzleHttp\Psr7\NoSeekStream::isSeekable()

Returns whether or not the stream is seekable.

Return value

bool

Overrides StreamDecoratorTrait::isSeekable

File

vendor/guzzlehttp/psr7/src/NoSeekStream.php, line 18

Class

NoSeekStream
Stream decorator that prevents a stream from being seeked

Namespace

GuzzleHttp\Psr7

Code

public function isSeekable() {
  return false;
}