diff --git a/core/install/resources/classes/install.php b/core/install/resources/classes/install.php new file mode 100644 index 0000000000..614e3fcd0b --- /dev/null +++ b/core/install/resources/classes/install.php @@ -0,0 +1,45 @@ +app_name = 'install'; + $this->app_uuid = '75507e6e-891e-11e5-af63-feff819cdc9f'; + } + + /** + * called when there are no references to a particular object + * unset the variables used in the class + */ + public function __destruct() { + foreach ($this as $key => $value) { + unset($this->$key); + } + } + + /** + * create the config.conf file + */ + public function config() { + + } + + } +} + +?>