File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -121,8 +121,13 @@ void zend_register_standard_constants(ELS_D)
121
121
#endif
122
122
REGISTER_MAIN_LONG_CONSTANT ("E_ERROR" , E_ERROR , CONST_PERSISTENT | CONST_CS );
123
123
REGISTER_MAIN_LONG_CONSTANT ("E_WARNING" , E_WARNING , CONST_PERSISTENT | CONST_CS );
124
- REGISTER_MAIN_LONG_CONSTANT ("E_NOTICE" , E_NOTICE , CONST_PERSISTENT | CONST_CS );
125
124
REGISTER_MAIN_LONG_CONSTANT ("E_PARSE" , E_PARSE , CONST_PERSISTENT | CONST_CS );
125
+ REGISTER_MAIN_LONG_CONSTANT ("E_NOTICE" , E_NOTICE , CONST_PERSISTENT | CONST_CS );
126
+ REGISTER_MAIN_LONG_CONSTANT ("E_CORE_ERROR" , E_CORE_ERROR , CONST_PERSISTENT | CONST_CS );
127
+ REGISTER_MAIN_LONG_CONSTANT ("E_CORE_WARNING" , E_CORE_WARNING , CONST_PERSISTENT | CONST_CS );
128
+ REGISTER_MAIN_LONG_CONSTANT ("E_COMPILE_ERROR" , E_COMPILE_ERROR , CONST_PERSISTENT | CONST_CS );
129
+ REGISTER_MAIN_LONG_CONSTANT ("E_COMPILE_WARNING" , E_COMPILE_WARNING , CONST_PERSISTENT | CONST_CS );
130
+
126
131
REGISTER_MAIN_LONG_CONSTANT ("E_ALL" , E_ALL , CONST_PERSISTENT | CONST_CS );
127
132
128
133
/* true/false constants */
You can’t perform that action at this time.
0 commit comments