You are here

public function RelativeStream::isSeekable in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/zendframework/zend-diactoros/src/RelativeStream.php \Zend\Diactoros\RelativeStream::isSeekable()

Returns whether or not the stream is seekable.

Return value

bool

Overrides StreamInterface::isSeekable

File

vendor/zendframework/zend-diactoros/src/RelativeStream.php, line 97

Class

RelativeStream
Class RelativeStream

Namespace

Zend\Diactoros

Code

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