ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
CellsFactory.php
Go to the documentation of this file.
1<?php
2
4
7
8abstract class CellsFactory
9{
17 public static function getInstance(Worksheet $parent)
18 {
19 return new Cells($parent, Settings::getCache());
20 }
21}
An exception for terminatinating execution or to throw for unit testing.
static getInstance(Worksheet $parent)
Initialise the cache storage.
static getCache()
Gets the implementation of cache that should be used for cell collection.
Definition: Settings.php:165