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 a18985a commit 27bdc08Copy full SHA for 27bdc08
src/phpDocumentor/Reflection/DocBlock.php
@@ -80,7 +80,7 @@ public function __construct(
80
81
list($short, $long, $tags) = $this->splitDocBlock($docblock);
82
$this->short_description = $short;
83
- $this->long_description = new DocBlock\Description($long);
+ $this->long_description = new DocBlock\Description($long, $this);
84
$this->parseTags($tags);
85
86
$this->namespace = $namespace;
src/phpDocumentor/Reflection/DocBlock/Description.php
@@ -12,6 +12,8 @@
12
13
namespace phpDocumentor\Reflection\DocBlock;
14
15
+use phpDocumentor\Reflection\DocBlock;
16
+
17
/**
18
* Parses a Description of a DocBlock or tag.
19
*
0 commit comments