summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorroot <root@lamp.local>2011-08-14 19:55:57 +0200
committerroot <root@lamp.local>2011-08-14 19:55:57 +0200
commit83e7a8ed2536aca790a83e8c533dcdc150e6a79b (patch)
tree48b576471e36f6c54f64563aa16dbb274961818e /system
parent254217a8655a14716bb673a0abde81c0b80ccd90 (diff)
Added some docs to CI core files
Diffstat (limited to 'system')
-rwxr-xr-x[-rw-r--r--]system/core/Benchmark.php5
-rwxr-xr-x[-rw-r--r--]system/core/CodeIgniter.php13
2 files changed, 18 insertions, 0 deletions
diff --git a/system/core/Benchmark.php b/system/core/Benchmark.php
index 515550e9f..a200727ab 100644..100755
--- a/system/core/Benchmark.php
+++ b/system/core/Benchmark.php
@@ -29,6 +29,11 @@
*/
class CI_Benchmark {
+ /**
+ * List of all benchmark markers and when they were added
+ *
+ * @var array
+ */
var $marker = array();
// --------------------------------------------------------------------
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);
/*