We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9101566 commit 87c6694Copy full SHA for 87c6694
src/Parser/Description/DescriptionParser.php
@@ -28,7 +28,7 @@ public function parse(string $description): Description
28
if (\str_starts_with($chunk, '@')) {
29
try {
30
$tags[] = $this->tags->parse($chunk, $this);
31
- $result .= $this->createDescriptionChunkPlaceholder(++$tagIdentifier);
+ $result .= '{' . $this->createDescriptionChunkPlaceholder(++$tagIdentifier) . '}';
32
} catch (\Throwable) {
33
$result .= "{{$chunk}}";
34
}
0 commit comments