diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-08-14 20:08:00 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-08-14 20:08:00 +0200 |
commit | c2a37669107829b032b08562e784416713f569b1 (patch) | |
tree | aa1525f1a23485a91d7281b1e38c3a4f6bf5860e /system/core/CodeIgniter.php | |
parent | 254217a8655a14716bb673a0abde81c0b80ccd90 (diff) | |
parent | 2d2c9c6be50c246463ec08ad7d152b3da9708c61 (diff) |
Merge pull request #46 from waldmeister/master
Added some docs to CI core files
Diffstat (limited to 'system/core/CodeIgniter.php')
-rwxr-xr-x[-rw-r--r--] | system/core/CodeIgniter.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/system/core/CodeIgniter.php b/system/core/CodeIgniter.php index 03b25ab9e..4eb918b15 100644..100755 --- a/system/core/CodeIgniter.php +++ b/system/core/CodeIgniter.php @@ -32,6 +32,12 @@ * Define the CodeIgniter Version * ------------------------------------------------------ */ + /** + * CodeIgniter Version + * + * @var string + * + */ define('CI_VERSION', '2.0.2'); /* @@ -39,6 +45,13 @@ * Define the CodeIgniter Branch (Core = TRUE, Reactor = FALSE) * ------------------------------------------------------ */ + + /** + * CodeIgniter Branch (Core = TRUE, Reactor = FALSE) + * + * @var string + * + */ define('CI_CORE', FALSE); /* |