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 99e6d8b commit 5204ae2Copy full SHA for 5204ae2
PHP/CodeCoverage/Report/Node.php
@@ -120,7 +120,7 @@ public function getId()
120
$parentId = $parent->getId();
121
122
if ($parentId == 'index') {
123
- $this->id = $this->name;
+ $this->id = str_replace(':', '_', $this->name);
124
} else {
125
$this->id = $parentId . '_' . $this->name;
126
}
0 commit comments