Neos\Flow\ResourceManagement\Streams\ResourceStreamWrapper::isAtEof PHP Метод

isAtEof() публичный Метод

This method is called in response to feof().
public isAtEof ( ) : boolean
Результат 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);
    }