public function RelativeStream::eof in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/zendframework/zend-diactoros/src/RelativeStream.php \Zend\Diactoros\RelativeStream::eof()
Returns true if the stream is at the end of the stream.
Return value
bool
Overrides StreamInterface::eof
File
- vendor/
zendframework/ zend-diactoros/ src/ RelativeStream.php, line 89
Class
- RelativeStream
- Class RelativeStream
Namespace
Zend\DiactorosCode
public function eof() {
return $this->decoratedStream
->eof();
}