mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
Fix warning that E_STRICT is deprecated in PHP 8.4
This commit is contained in:
parent
bbd33e53ca
commit
187157cfcd
1 changed files with 1 additions and 1 deletions
|
|
@ -968,7 +968,7 @@ class Debug
|
|||
case \E_USER_ERROR: return 'User Error';
|
||||
case \E_USER_WARNING: return 'Warning';
|
||||
case \E_USER_NOTICE: return 'Notice';
|
||||
case \E_STRICT: return 'Strict Standards';
|
||||
case 2048: return 'Strict Standards'; /* E_STRICT is deprecated */
|
||||
case \E_PARSE: return 'Parse Error';
|
||||
case \E_DEPRECATED: return 'Deprecated';
|
||||
case \E_USER_DEPRECATED: return 'User Deprecated';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue