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

rewind() public method

public rewind ( )
    public function rewind()
    {
        if ($this->xml) {
            $this->xml->close();
        }
        $this->xml = new \XMLReader();
        $this->xml->open($this->path);
        $this->next();
    }