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 1a1b18c + 7bc6b7f commit 81ba3f8Copy full SHA for 81ba3f8
PHP/CodeCoverage/Report/HTML/Renderer/File.php
@@ -49,6 +49,10 @@
49
}
50
// @codeCoverageIgnoreEnd
51
52
+if (!defined('T_INSTEADOF')) {
53
+ define('T_INSTEADOF', 1002);
54
+}
55
+
56
/**
57
* Renders a PHP_CodeCoverage_Report_Node_File node.
58
*
@@ -577,9 +581,11 @@ protected function loadFile($file)
577
581
case T_FUNCTION:
578
582
case T_GLOBAL:
579
583
case T_IF:
584
+ case T_IMPLEMENTS:
580
585
case T_INCLUDE:
586
case T_INCLUDE_ONCE:
587
case T_INSTANCEOF:
588
+ case T_INSTEADOF:
589
case T_ISSET:
590
case T_LOGICAL_AND:
591
case T_LOGICAL_OR:
0 commit comments