You are here

public function RelativeStream::isReadable in Zircon Profile 8

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

Returns whether or not the stream is readable.

Return value

bool

Overrides StreamInterface::isReadable

File

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

Class

RelativeStream
Class RelativeStream

Namespace

Zend\Diactoros

Code

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