Skip to content

Commit 0adf13c

Browse files
committed
fix: Missing space in issue title
1 parent ec94180 commit 0adf13c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Dto/GithubIssue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static function fromMantisIssue(MantisIssue $issue): GithubIssue
3434
$issueBadge = '[![MANTIS-' . $issue->getId() . '](https://img.shields.io/badge/MANTIS-' . $issue->getId() . '-green?style=for-the-badge)](' . $issue->getIssueUrl() . ')';
3535

3636
return new self(
37-
title: $issue->getSummary() . '[' . $issue->getProject() . '] [MANTIS-' . $issue->getId() . ']',
37+
title: $issue->getSummary() . ' [' . $issue->getProject() . '] [MANTIS-' . $issue->getId() . ']',
3838
description: $issue->getDescription() . PHP_EOL . PHP_EOL . $issueBadge,
3939
);
4040
}

0 commit comments

Comments
 (0)