Skip to content

Commit

Permalink
fix issue #29
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRatG authored and marcocesarato committed Nov 25, 2021
1 parent e4aef90 commit 285cf47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Git/ConventionalCommit.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public function getReferences(): array
{
$refs = [];
foreach ($this->footers as $footer) {
$refs = array_merge($footer->getReferences());
$refs = array_merge($refs, $footer->getReferences());
}

return array_unique($refs);
Expand Down

0 comments on commit 285cf47

Please sign in to comment.