Box\Spout\Reader\XLSX\SheetIterator::end PHP Метод

end() публичный Метод

Cleans up what was created to iterate over the object.
public end ( ) : void
Результат void
    public function end()
    {
        // make sure we are not leaking memory in case the iteration stopped before the end
        foreach ($this->sheets as $sheet) {
            $sheet->getRowIterator()->end();
        }
    }