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

rewind() public method

public rewind ( )
    public function rewind()
    {
        if ($this->fileHandle) {
            rewind($this->fileHandle);
        } else {
            $this->openResource();
        }
        $this->currentKey = 0;
        $this->next();
    }