public function Stream::isReadable in Zircon Profile 8
Same name in this branch
- 8 vendor/zendframework/zend-diactoros/src/Stream.php \Zend\Diactoros\Stream::isReadable()
- 8 vendor/guzzlehttp/psr7/src/Stream.php \GuzzleHttp\Psr7\Stream::isReadable()
- 8 vendor/symfony/psr-http-message-bridge/Tests/Fixtures/Stream.php \Symfony\Bridge\PsrHttpMessage\Tests\Fixtures\Stream::isReadable()
Same name and namespace in other branches
- 8.0 vendor/guzzlehttp/psr7/src/Stream.php \GuzzleHttp\Psr7\Stream::isReadable()
Returns whether or not the stream is readable.
Return value
bool
Overrides StreamInterface::isReadable
File
- vendor/
guzzlehttp/ psr7/ src/ Stream.php, line 159
Class
- Stream
- PHP stream implementation.
Namespace
GuzzleHttp\Psr7Code
public function isReadable() {
return $this->readable;
}