_dataStorage = $dataStorage; } /** * {inheritdoc} * * @return array */ public function getTypes() { return $this->_dataStorage->get('types', []); } /** * {inheritdoc} * * @param string $type * @return array */ public function getType($type) { return $this->_dataStorage->get('types/' . $type, []); } }