diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-04-19 22:38:50 +0200 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-04-19 22:38:50 +0200 |
commit | 40403d21274d5e0792c7ab816ad984d6387d5c20 (patch) | |
tree | 255d722c5f1a3f71035f50018d852da56c0b476f /system/core/Exceptions.php | |
parent | ad4750509885ad5bb368fc308f86d8c06d45b15c (diff) |
Additional formatting fixes
Diffstat (limited to 'system/core/Exceptions.php')
-rwxr-xr-x | system/core/Exceptions.php | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/system/core/Exceptions.php b/system/core/Exceptions.php index dd5841333..f55f9fcba 100755 --- a/system/core/Exceptions.php +++ b/system/core/Exceptions.php @@ -49,19 +49,19 @@ class CI_Exceptions { * @var array */ public $levels = array( - E_ERROR => 'Error', - E_WARNING => 'Warning', - E_PARSE => 'Parsing Error', - E_NOTICE => 'Notice', - E_CORE_ERROR => 'Core Error', - E_CORE_WARNING => 'Core Warning', - E_COMPILE_ERROR => 'Compile Error', - E_COMPILE_WARNING => 'Compile Warning', - E_USER_ERROR => 'User Error', - E_USER_WARNING => 'User Warning', - E_USER_NOTICE => 'User Notice', - E_STRICT => 'Runtime Notice' - ); + E_ERROR => 'Error', + E_WARNING => 'Warning', + E_PARSE => 'Parsing Error', + E_NOTICE => 'Notice', + E_CORE_ERROR => 'Core Error', + E_CORE_WARNING => 'Core Warning', + E_COMPILE_ERROR => 'Compile Error', + E_COMPILE_WARNING => 'Compile Warning', + E_USER_ERROR => 'User Error', + E_USER_WARNING => 'User Warning', + E_USER_NOTICE => 'User Notice', + E_STRICT => 'Runtime Notice' + ); /** * Initialize execption class |