Skip to content

Commit d51b384

Browse files
tanhongitgithub-actions[bot]
authored andcommitted
Fix styling
1 parent c1a3179 commit d51b384

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/Jobs/ProcessAggregatedEvents.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,18 @@ public function handle(): void
3737

3838
if (empty($eventMessages)) {
3939
Cache::forget($commentAggregationCacheKey.'_author');
40+
4041
return;
4142
}
4243

4344
$message = $this->aggregateMessages($eventMessages);
4445
Cache::forget($commentAggregationCacheKey);
4546
$author = Cache::pull($commentAggregationCacheKey.'_author', '');
4647

47-
$message .= '\n\n'.view('github-project::md.shared.author',
48-
['name' => $author['name'], 'html_url' => $author['html_url']])->render();
48+
$message .= '\n\n'.view(
49+
'github-project::md.shared.author',
50+
['name' => $author['name'], 'html_url' => $author['html_url']]
51+
)->render();
4952

5053
$githubService = new GithubService;
5154
$githubService->commentOnNode($this->nodeId, $message);

src/Services/GithubService.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ public function handleComment(array $payload): void
5151

5252
if (config('github-project.is_queue_enabled')) {
5353
ProcessWebhookEvent::dispatch($payload);
54+
5455
return;
5556
}
5657

0 commit comments

Comments
 (0)