diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-04-23 17:58:16 +0200 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-04-23 17:58:16 +0200 |
commit | 48a7fbbeb53e82e9298036d40c42ec2564699ed0 (patch) | |
tree | 37d4695d18579ecae45b6c49c2719e87696bfc21 /system/core/Config.php | |
parent | c8a2a60c1075e5f725967962663127dad0f9e2e1 (diff) |
Use tabs to separate class properties
Diffstat (limited to 'system/core/Config.php')
-rwxr-xr-x | system/core/Config.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/core/Config.php b/system/core/Config.php index fc6183444..1eab08b82 100755 --- a/system/core/Config.php +++ b/system/core/Config.php @@ -45,14 +45,14 @@ class CI_Config { * * @var array */ - public $config = array(); + public $config = array(); /** * List of all loaded config files * * @var array */ - public $is_loaded = array(); + public $is_loaded = array(); /** * List of paths to search when trying to load a config file. @@ -60,7 +60,7 @@ class CI_Config { * * @var array */ - public $_config_paths = array(APPPATH); + public $_config_paths = array(APPPATH); /** * Constructor |