You are here

public function PHPExcel_CachedObjectStorage_SQLite::unsetWorksheetCells in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/SQLite.php \PHPExcel_CachedObjectStorage_SQLite::unsetWorksheetCells()

* Clear the cell collection and disconnect from our parent * *

Return value

void

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/SQLite.php, line 248

Class

PHPExcel_CachedObjectStorage_SQLite
PHPExcel_CachedObjectStorage_SQLite

Code

public function unsetWorksheetCells() {
  if (!is_null($this->_currentObject)) {
    $this->_currentObject
      ->detach();
    $this->_currentObject = $this->_currentObjectID = null;
  }

  //	detach ourself from the worksheet, so that it can then delete this object successfully
  $this->_parent = null;

  //	Close down the temporary cache file
  $this
    ->__destruct();
}