Neos\Flow\ResourceManagement\Streams\ResourceStreamWrapper::isAtEof PHP Method

isAtEof() public method

This method is called in response to feof().
public isAtEof ( ) : boolean
return boolean Should return TRUE if the read/write position is at the end of the stream and if no more data is available to be read, or FALSE otherwise.
    public function isAtEof()
    {
        return feof($this->handle);
    }