public function FnStream::eof in Lockr 7.3
Returns true if the stream is at the end of the stream.
Return value
bool
Overrides StreamInterface::eof
File
- vendor/
guzzlehttp/ psr7/ src/ FnStream.php, line 109
Class
- FnStream
- Compose stream implementations based on a hash of functions.
Namespace
GuzzleHttp\Psr7Code
public function eof() {
return call_user_func($this->_fn_eof);
}