Пример #1
0
 public function getConfig()
 {
     $config = $this->configMapper->getByBackend($this->getId());
     $defaultConfig = $this->getDefaultConfig();
     $configNotInDB = array_diff_key($defaultConfig, $config);
     foreach ($configNotInDB as $key => $value) {
         $config[$key] = $value;
     }
     return $config;
 }