summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhil Sturgeon <email@philsturgeon.co.uk>2011-08-14 23:22:24 +0200
committerPhil Sturgeon <email@philsturgeon.co.uk>2011-08-14 23:22:24 +0200
commit8ddb47df384156035de886736bb88a8848ad0149 (patch)
tree9cff20bdb6061e250407d2308489133f83719cc9
parent19af21d5425ace1621cbd26677c327c990bb75c1 (diff)
parent209b2cf0feac54b4e4fd4c3896524cfc65bf8a46 (diff)
Merge pull request #50 from waldmeister/develop
Develop - Added some docs to CI core files
-rwxr-xr-x[-rw-r--r--]system/core/Exceptions.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/system/core/Exceptions.php b/system/core/Exceptions.php
index bff86a92f..6a63ca733 100644..100755
--- a/system/core/Exceptions.php
+++ b/system/core/Exceptions.php
@@ -30,8 +30,22 @@ class CI_Exceptions {
var $message;
var $filename;
var $line;
+
+ /**
+ * Nesting level of the output buffering mechanism
+ * Used to
+ *
+ * @var int
+ * @access public
+ */
var $ob_level;
+ /**
+ * List if available error levels
+ *
+ * @var array
+ * @access public
+ */
var $levels = array(
E_ERROR => 'Error',
E_WARNING => 'Warning',