File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 21
21
#ifndef _ZEND_ERRORS_H
22
22
#define _ZEND_ERRORS_H
23
23
24
- #define E_CORE_ERROR (1<<0L)
25
- #define E_CORE_WARNING (1<<1L)
26
- #define E_COMPILE_ERROR (1<<2L)
27
- #define E_COMPILE_WARNING (1<<3L)
28
- #define E_PARSE (1<<4L)
29
- #define E_ERROR (1<<5L)
30
- #define E_WARNING (1<<6L)
31
- #define E_NOTICE (1<<7L)
24
+ #define E_ERROR (1<<0L)
25
+ #define E_WARNING (1<<1L)
26
+ #define E_PARSE (1<<2L)
27
+ #define E_NOTICE (1<<3L)
28
+ #define E_CORE_ERROR (1<<4L)
29
+ #define E_CORE_WARNING (1<<5L)
30
+ #define E_COMPILE_ERROR (1<<6L)
31
+ #define E_COMPILE_WARNING (1<<7L)
32
32
33
33
#define E_ALL (E_ERROR | E_WARNING | E_PARSE | E_NOTICE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING)
34
34
#define E_CORE (E_CORE_ERROR | E_CORE_WARNING)
35
35
36
-
37
36
#endif /* _ZEND_ERRORS_H */
37
+
You can’t perform that action at this time.
0 commit comments