fix deprecated errors

This commit is contained in:
Tim Bendt
2025-11-25 15:28:51 -05:00
parent 5b6f7ec3ed
commit 169e60a4ec
3 changed files with 11 additions and 9 deletions

View File

@@ -54,10 +54,11 @@ class CI_Exceptions {
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_USER_ERROR => 'User Error',
E_USER_WARNING => 'User Warning',
E_USER_NOTICE => 'User Notice',
2048 => 'Runtime Notice'
);