Skip to content

Commit eacc623

Browse files
committed
Fix error on PHP 8.2.
1 parent 55d75c7 commit eacc623

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Release.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public function __construct(
6363
*/
6464
public function previewFormat()
6565
{
66-
return implode([$this->_actionDescription(), $this->_releaseName(), $this->notes], "\n\n");
66+
return implode("\n\n", [$this->_actionDescription(), $this->_releaseName(), $this->notes]);
6767
}
6868

6969
/**

0 commit comments

Comments
 (0)