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 7bc6b7f commit 75f4896Copy full SHA for 75f4896
PHP/CodeCoverage/Report/HTML/Renderer/File.php
@@ -55,6 +55,10 @@
55
define('T_INSTEADOF', 1002);
56
}
57
58
+if (!defined('T_CALLABLE')) {
59
+ define('T_CALLABLE', 1003);
60
+}
61
+
62
/**
63
* Renders a PHP_CodeCoverage_Report_Node_File node.
64
*
@@ -560,6 +564,7 @@ protected function loadFile($file)
560
564
case T_ARRAY:
561
565
case T_AS:
562
566
case T_BREAK:
567
+ case T_CALLABLE:
563
568
case T_CASE:
569
case T_CATCH:
570
case T_CLASS:
0 commit comments