You are here

public function NoSeekStream::isSeekable in Lockr 7.3

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;
}