_config = $config; } /** * Returns the set config * * @return array */ public function config(): array { return $this->_config; } /** * Returns the set name */ public function configName(): string { if (empty($this->_config['name'])) { return ''; } return $this->_config['name']; } }