diff options
author | David Behler <mail@davidbehler.de> | 2011-08-14 20:30:50 +0200 |
---|---|---|
committer | David Behler <mail@davidbehler.de> | 2011-08-14 20:30:50 +0200 |
commit | 050abb8aa6347cb076153f44b2ea0b5f0da006c0 (patch) | |
tree | 810be2cc34f992b9b7742a84a62db1ec2ba874cd /system/core/Config.php | |
parent | d33f91708f73735231f458090a478f1204480c30 (diff) |
Added some docs to CI core files
Diffstat (limited to 'system/core/Config.php')
-rwxr-xr-x[-rw-r--r--] | system/core/Config.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/system/core/Config.php b/system/core/Config.php index 1096a9ea6..5cacf867c 100644..100755 --- a/system/core/Config.php +++ b/system/core/Config.php @@ -28,8 +28,23 @@ */ class CI_Config { + /** + * List of all loaded config values + * + * @var array + */ var $config = array(); + /** + * List of all loaded config files + * + * @var array + */ var $is_loaded = array(); + /** + * List of paths to search when trying to load a config file + * + * @var array + */ var $_config_paths = array(APPPATH); /** |