Add support for removing config settings

This commit is contained in:
2011-08-28 16:18:25 +01:00
parent faf8806472
commit 01d97bface
3 changed files with 29 additions and 0 deletions

View File

@@ -21,6 +21,14 @@ interface SihnonFramework_Config_IUpdateable {
*/
public function add($key, $type, $value);
/**
*
* Remove a setting
* @param string $key
* @return bool
*/
public function remove($key);
}
?>