Skip to content

Commit 94fd000

Browse files
TomasVotrubajaapio
authored andcommitted
fix cs
1 parent 763f26e commit 94fd000

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/DocBlock/Serializer.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ public function getDocComment(DocBlock $docblock)
8686
$comment .= "{$indent} * {$text}\n";
8787
$comment .= "{$indent} *\n";
8888
}
89+
8990
$comment = $this->addTagBlock($docblock, $wrapLength, $indent, $comment);
9091
$comment .= $indent . ' */';
9192

tests/unit/DocBlock/SerializerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ public function testNoExtraSpacesAfterTagRemoval()
192192
$fixture = new Serializer(0, '', true, 15);
193193
$genericTag = new DocBlock\Tags\Generic('unknown-tag');
194194

195-
$docBlock = new DocBlock('',null, [$genericTag]);
195+
$docBlock = new DocBlock('', null, [$genericTag]);
196196
$this->assertSame($expected, $fixture->getDocComment($docBlock));
197197

198198
$docBlock->removeTag($genericTag);

0 commit comments

Comments
 (0)