public function FnStream::isReadable in Lockr 7.3
Returns whether or not the stream is readable.
Return value
bool
Overrides StreamInterface::isReadable
File
- vendor/
guzzlehttp/ psr7/ src/ FnStream.php, line 139
Class
- FnStream
- Compose stream implementations based on a hash of functions.
Namespace
GuzzleHttp\Psr7Code
public function isReadable() {
return call_user_func($this->_fn_isReadable);
}