mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-24 05:39:58 +09:00
Treat user warnings as same as PHP warnings
This commit is contained in:
parent
16a2f2c94a
commit
2dddc982a7
1 changed files with 2 additions and 2 deletions
|
|
@ -626,8 +626,8 @@ class Debug
|
|||
case \E_COMPILE_ERROR: return 'Compile-time Error';
|
||||
case \E_COMPILE_WARNING: return 'Compile-time Warning';
|
||||
case \E_USER_ERROR: return 'User Error';
|
||||
case \E_USER_WARNING: return 'User Warning';
|
||||
case \E_USER_NOTICE: return 'User Notice';
|
||||
case \E_USER_WARNING: return 'Warning';
|
||||
case \E_USER_NOTICE: return 'Notice';
|
||||
case \E_STRICT: return 'Strict Standards';
|
||||
case \E_PARSE: return 'Parse Error';
|
||||
case \E_DEPRECATED: return 'Deprecated';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue