_cacheTypeList = $cacheTypeList; parent::__construct($entityFactory); } /** * Load data * * @param bool $printQuery * @param bool $logQuery * @return $this * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ public function loadData($printQuery = false, $logQuery = false) { if (!$this->isLoaded()) { foreach ($this->_cacheTypeList->getTypes() as $type) { $this->addItem($type); } $this->_setIsLoaded(true); } return $this; } }