Skip to content

Commit 846c52c

Browse files
committed
Apply fixes from StyleCI
1 parent f656b6d commit 846c52c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/RequestDataProcessor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function getGitDetails()
4141
{
4242
$gitDetails = [];
4343
$lastCommitDetails = `git show -s --format=%B`;
44-
$gitDetails['Last Commit Message'] = preg_filter("/(.*?)\n*/s", "\\1", $lastCommitDetails);
44+
$gitDetails['Last Commit Message'] = preg_filter("/(.*?)\n*/s", '\\1', $lastCommitDetails);
4545

4646
$currentHeadDetails = `git branch -v --no-abbrev`;
4747
if (

0 commit comments

Comments
 (0)