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 a12d38c commit 78b9a30Copy full SHA for 78b9a30
PHP/CodeCoverage/Report/HTML.php
@@ -140,6 +140,12 @@ public function process(PHP_CodeCoverage $coverage, $target)
140
*/
141
protected function render(PHP_CodeCoverage_Report_HTML_Node_Directory $root, $target)
142
{
143
+ $classes = array();
144
+
145
+ foreach ($root as $node) {
146
+ $classes = array_merge($classes, $node->getClasses());
147
+ }
148
149
$root->render(
150
$target,
151
$this->options['title'],
0 commit comments