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 9421685 commit cbb4e7cCopy full SHA for cbb4e7c
PHP/CodeCoverage/Report/Node.php
@@ -135,9 +135,7 @@ public function getId()
135
public function getPath()
136
{
137
if ($this->path === NULL) {
138
- if ($this->parent === NULL ||
139
- $this->parent->getPath() == NULL
140
- ) {
+ if ($this->parent === NULL || $this->parent->getPath() == NULL) {
141
$this->path = $this->name;
142
} else {
143
$this->path = $this->parent->getPath() . '/' . $this->name;
0 commit comments