Skip to content

Commit 73744fe

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 7899dd4 + 676714d commit 73744fe

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

src/Actions/GenerateCommentAction.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ class GenerateCommentAction
1515
public function __construct(
1616
protected readonly WebhookService $webhookService,
1717
protected readonly GithubService $githubService,
18-
) {}
18+
) {
19+
}
1920

2021
/**
2122
* Generate a comment message from the webhook payload.

src/Actions/WebhookAction.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ class WebhookAction
1515
public function __construct(
1616
protected readonly WebhookService $webhookService,
1717
protected readonly GithubService $githubService,
18-
) {}
18+
) {
19+
}
1920

2021
/**
2122
* @throws Throwable

src/Jobs/ProcessAggregatedEvents.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ class ProcessAggregatedEvents implements ShouldQueue
2121

2222
public function __construct(
2323
protected readonly string $nodeId,
24-
) {}
24+
) {
25+
}
2526

2627
public function handle(GithubService $githubService): void
2728
{

src/Jobs/ProcessWebhookEvent.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ class ProcessWebhookEvent implements ShouldQueue
2323
*/
2424
public function __construct(
2525
protected readonly array $eventData,
26-
) {}
26+
) {
27+
}
2728

2829
public function handle(): void
2930
{

src/Services/GithubService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class GithubService
1414

1515
public function __construct(?Client $client = null)
1616
{
17-
$this->client = $client ?? new Client();
17+
$this->client = $client ?? new Client;
1818
}
1919

2020
/**

0 commit comments

Comments
 (0)