Akeneo\Component\SpreadsheetParser\Csv\RowIterator::rewind PHP 메소드

rewind() 공개 메소드

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