public function __set($name,
$value) { if ($this->_allowModifications
) { if (\
is_array($value)) { $this->_data
[$name] =
new self($value, true
);
} else { $this->_data
[$name] =
$value;
} $this->_count = \
count($this->_data
);
} else { throw new Enlight_Config_Exception('Enlight_Config_BaseConfig is read only'
);
} } /**
* Deep clone of this instance to ensure that nested Enlight_Config_BaseConfigs
* are also cloned.
*
* @return void
*/
public function __clone() {