Over write key value pairs in this collection with all of the data from an array or collection.
array|\Traversable $data Values to override over this config:
self
public function overwriteWith($data) {
foreach ($data as $k => $v) {
$this
->set($k, $v);
}
return $this;
}