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.
2 parents d604da9 + 96a7992 commit dae5a71Copy full SHA for dae5a71
src/Report/Html/Renderer/File.php
@@ -1128,6 +1128,14 @@ private static function keywordTokens(): array
1128
self::$keywordTokens[constant('T_MATCH')] = true;
1129
}
1130
1131
+ if (defined('T_ENUM')) {
1132
+ self::$keywordTokens[constant('T_ENUM')] = true;
1133
+ }
1134
+
1135
+ if (defined('T_READONLY')) {
1136
+ self::$keywordTokens[constant('T_READONLY')] = true;
1137
1138
1139
return self::$keywordTokens;
1140
1141
0 commit comments