コード例 #1
0
ファイル: Config.php プロジェクト: webfactory/slimdump
 /**
  * Merge two configurations together.
  * If two configurations specify the same table,
  * the last one wins.
  *
  * @param Config $other
  */
 public function merge(Config $other)
 {
     $this->tables = array_merge($this->tables, $other->getTables());
 }