composer update

This commit is contained in:
2020-12-06 10:28:55 +00:00
parent 69d92960d9
commit 09413522bb
1596 changed files with 60456 additions and 39587 deletions
+3 -3
View File
@@ -216,16 +216,16 @@ class FactoryMethod
public function getCommentText()
{
return implode(PHP_EOL, $this->comment);
return implode("\n", $this->comment);
}
public function getComment($indent = '')
{
$comment = $indent . '/**';
foreach ($this->comment as $line) {
$comment .= PHP_EOL . rtrim($indent . ' * ' . $line);
$comment .= "\n" . rtrim($indent . ' * ' . $line);
}
$comment .= PHP_EOL . $indent . ' */';
$comment .= "\n" . $indent . ' */';
return $comment;
}
}