Box\Spout\Reader\ODS\RowIterator::processRowStartingNode PHP Метод

processRowStartingNode() защищенный Метод

protected processRowStartingNode ( Box\Spout\Reader\Wrapper\XMLReader $xmlReader ) : integer
$xmlReader Box\Spout\Reader\Wrapper\XMLReader XMLReader object, positioned on a "" starting node
Результат integer A return code that indicates what action should the processor take next
    protected function processRowStartingNode($xmlReader)
    {
        // Reset data from current row
        $this->hasAlreadyReadOneCellInCurrentRow = false;
        $this->lastProcessedCellValue = null;
        $this->numColumnsRepeated = 1;
        $this->numRowsRepeated = $this->getNumRowsRepeatedForCurrentNode($xmlReader);
        return XMLProcessor::PROCESSING_CONTINUE;
    }