We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f656b6d + 846c52c commit 1be00b4Copy full SHA for 1be00b4
src/RequestDataProcessor.php
@@ -41,7 +41,7 @@ public function getGitDetails()
41
{
42
$gitDetails = [];
43
$lastCommitDetails = `git show -s --format=%B`;
44
- $gitDetails['Last Commit Message'] = preg_filter("/(.*?)\n*/s", "\\1", $lastCommitDetails);
+ $gitDetails['Last Commit Message'] = preg_filter("/(.*?)\n*/s", '\\1', $lastCommitDetails);
45
46
$currentHeadDetails = `git branch -v --no-abbrev`;
47
if (
0 commit comments