Exemplo n.º 1
0
 /**
  * Merge the configuration from the other Config
  * @param \Packfire\Config\ConfigInterface $config The configuration to merge in
  * @since 1.2.0
  */
 public function merge(ConfigInterface $config)
 {
     $this->data = ArrayUtility::mergeRecursiveDistinct($this->data, $config->get());
 }