We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8c4559 commit 96a7992Copy full SHA for 96a7992
src/Report/Html/Renderer/File.php
@@ -1136,6 +1136,14 @@ private static function keywordTokens(): array
1136
self::$keywordTokens[constant('T_MATCH')] = true;
1137
}
1138
1139
+ if (defined('T_ENUM')) {
1140
+ self::$keywordTokens[constant('T_ENUM')] = true;
1141
+ }
1142
+
1143
+ if (defined('T_READONLY')) {
1144
+ self::$keywordTokens[constant('T_READONLY')] = true;
1145
1146
1147
return self::$keywordTokens;
1148
1149
0 commit comments