예제 #1
0
파일: Config.php 프로젝트: packfire/config
 /**
  * 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());
 }