This commit is contained in:
TomasVotruba
2017-11-30 08:14:17 +01:00
committed by Jaap van Otterdijk
parent 763f26e8db
commit 94fd000123
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -86,6 +86,7 @@ class Serializer
$comment .= "{$indent} * {$text}\n";
$comment .= "{$indent} *\n";
}
$comment = $this->addTagBlock($docblock, $wrapLength, $indent, $comment);
$comment .= $indent . ' */';
+1 -1
View File
@@ -192,7 +192,7 @@ DOCCOMMENT_AFTER_REMOVE;
$fixture = new Serializer(0, '', true, 15);
$genericTag = new DocBlock\Tags\Generic('unknown-tag');
$docBlock = new DocBlock('',null, [$genericTag]);
$docBlock = new DocBlock('', null, [$genericTag]);
$this->assertSame($expected, $fixture->getDocComment($docBlock));
$docBlock->removeTag($genericTag);