diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-04-27 16:45:43 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-04-27 16:45:43 +0200 |
commit | 2fbd57d6d58afd64caa841a876e9773272275526 (patch) | |
tree | 917b0b26bbd8bfdef11c35c8f5df90aab0475473 /system/core/Config.php | |
parent | 8a6d16c62602d249d2e66356faf5e2f4b8470c9e (diff) | |
parent | 68f098142cb71f6a57f74ce34b5f58616cc1ed2f (diff) |
Merge pull request #1296 from timw4mail/library-cleanup
Library cleanup - adding additional docblocks
Diffstat (limited to 'system/core/Config.php')
-rwxr-xr-x | system/core/Config.php | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/system/core/Config.php b/system/core/Config.php index 1eab08b82..9cebe6c86 100755 --- a/system/core/Config.php +++ b/system/core/Config.php @@ -66,11 +66,6 @@ class CI_Config { * Constructor * * Sets the $config data from the primary config.php file as a class variable - * - * @param string the config file name - * @param boolean if configuration values should be loaded into their own section - * @param boolean true if errors should just return false, false if an error message should be displayed - * @return boolean if the file was successfully loaded or not */ public function __construct() { @@ -192,7 +187,6 @@ class CI_Config { * * @param string the config item name * @param string the index name - * @param bool * @return string */ public function item($item, $index = '') @@ -211,7 +205,6 @@ class CI_Config { * Fetch a config file item - adds slash after item (if item is not empty) * * @param string the config item name - * @param bool * @return string */ public function slash_item($item) |