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

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

protected readDataForNextRow ( ) : void
Результат void
    protected function readDataForNextRow()
    {
        $this->currentlyProcessedRowData = [];
        try {
            $this->xmlProcessor->readUntilStopped();
        } catch (XMLProcessingException $exception) {
            throw new IOException("The sheet's data cannot be read. [{$exception->getMessage()}]");
        }
        $this->rowDataBuffer = $this->currentlyProcessedRowData;
    }