Skip to content

Commit 3546653

Browse files
committed
Fix one more erroneous property assignment
1 parent 5ab4472 commit 3546653

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Node/Directory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ public function getNumPaths(): int
504504
$this->numPaths = 0;
505505

506506
foreach ($this->children as $child) {
507-
$this->numMethods += $child->getNumPaths();
507+
$this->numPaths += $child->getNumPaths();
508508
}
509509
}
510510

0 commit comments

Comments
 (0)