We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f719b9d commit 1984a49Copy full SHA for 1984a49
Zend/zend_highlight.c
@@ -104,9 +104,15 @@ ZEND_API void zend_highlight(zend_syntax_highlighter_ini *syntax_highlighter_ini
104
break;
105
case T_OPEN_TAG:
106
case T_OPEN_TAG_WITH_ECHO:
107
- next_color = syntax_highlighter_ini->highlight_default;
108
- break;
109
case T_CLOSE_TAG:
+ case T_LINE:
+ case T_FILE:
110
+ case T_DIR:
111
+ case T_TRAIT_C:
112
+ case T_METHOD_C:
113
+ case T_FUNC_C:
114
+ case T_NS_C:
115
+ case T_CLASS_C:
116
next_color = syntax_highlighter_ini->highlight_default;
117
118
case '"':
0 commit comments