diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-08-14 21:11:29 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-08-14 21:11:29 +0200 |
commit | 19af21d5425ace1621cbd26677c327c990bb75c1 (patch) | |
tree | 6a4de90124615ff5cb71b3c7feaf7006748e516c /system/core/Config.php | |
parent | 6cf190dcd68432a5bcea91bfc10a38b3f56e7f46 (diff) | |
parent | 9b5df59a6be4da0016b738de8c4fcd3a14d43867 (diff) |
Merge pull request #49 from waldmeister/develop
Added some doc blocks to some 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); /** |