Akeneo\Component\SpreadsheetParser\Csv\RowIterator::next PHP Method

next() public method

public next ( )
    public function next()
    {
        $this->currentValue = fgetcsv($this->fileHandle, $this->options['length'], $this->options['delimiter'], $this->options['enclosure'], $this->options['escape']);
        $this->currentKey++;
        $this->valid = false !== $this->currentValue;
    }