D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
html
/
rosario
/
adm
/
phpoffice
/
phpspreadsheet
/
src
/
PhpSpreadsheet
/
Collection
/
Filename :
CellsFactory.php
back
Copy
<?php namespace PhpOffice\PhpSpreadsheet\Collection; use PhpOffice\PhpSpreadsheet\Settings; use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; abstract class CellsFactory { /** * Initialise the cache storage. * * @param Worksheet $worksheet Enable cell caching for this worksheet * * @return Cells * */ public static function getInstance(Worksheet $worksheet) { return new Cells($worksheet, Settings::getCache()); } }