From 0c33bf3bf2de01b07fdbce3e6d0ac2eceb9d1900 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Thu, 15 Oct 2020 19:17:06 +0200 Subject: [PATCH] Bugfix --- src/PhpDoc/GenericDoc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PhpDoc/GenericDoc.php b/src/PhpDoc/GenericDoc.php index d6861b6..4c0a1aa 100644 --- a/src/PhpDoc/GenericDoc.php +++ b/src/PhpDoc/GenericDoc.php @@ -121,7 +121,7 @@ abstract class GenericDoc $seeAlso .= "* `$ref`\n"; continue; } - $from = \explode('\\', $this->resolvedClassName); + $from = \explode('\\', $this->resolvedClassName.".md"); $relPath = $to; foreach ($from as $depth => $dir) {