Skip to content

Commit c1cea81

Browse files
jbrooksukgithub-actions[bot]
authored andcommitted
Fix code styling
1 parent e411be2 commit c1cea81

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/Jobs/SendBeaconJob.php

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,18 @@ public function handle(): void
2525
$request = Http::asJson()
2626
->retry(3)
2727
->post('https://cachethq.io/beacon', [
28-
'install_id' => app(AppSettings::class)->install_id,
29-
'php_version' => PHP_VERSION,
30-
'version' => Cachet::version(),
31-
'docker' => config('cachet.docker'),
32-
'database' => config('database.default'),
33-
'data' => [
34-
'components' => Component::query()->count(),
35-
'incidents' => Incident::query()->count(),
36-
'metrics' => Metric::query()->count(),
37-
'schedules' => Schedule::query()->count(),
38-
],
39-
]);
28+
'install_id' => app(AppSettings::class)->install_id,
29+
'php_version' => PHP_VERSION,
30+
'version' => Cachet::version(),
31+
'docker' => config('cachet.docker'),
32+
'database' => config('database.default'),
33+
'data' => [
34+
'components' => Component::query()->count(),
35+
'incidents' => Incident::query()->count(),
36+
'metrics' => Metric::query()->count(),
37+
'schedules' => Schedule::query()->count(),
38+
],
39+
]);
4040

4141
BeaconSent::dispatchIf($request->successful());
4242
}

0 commit comments

Comments
 (0)