public function PHPExcel_CachedObjectStorage_CacheBase::updateCacheData in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php \PHPExcel_CachedObjectStorage_CacheBase::updateCacheData()
Add or Update a cell in cache
Parameters
PHPExcel_Cell $cell Cell to update: * @return PHPExcel_Cell
Throws
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ CachedObjectStorage/ CacheBase.php, line 142
Class
- PHPExcel_CachedObjectStorage_CacheBase
- PHPExcel_CachedObjectStorage_CacheBase
Code
public function updateCacheData(PHPExcel_Cell $cell) {
return $this
->addCacheData($cell
->getCoordinate(), $cell);
}