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.
1 parent fedc396 commit 3261de7Copy full SHA for 3261de7
app/Jobs/CheckSiteHealth.php
@@ -41,12 +41,14 @@ public function handle(): void
41
}
42
43
// Write updated data to DB
44
- $this->site->update($healthData->only([
45
- 'php_version',
46
- 'db_type',
47
- 'db_version',
48
- 'cms_version',
49
- 'server_os'
50
- ])->toArray());
+ $this->site->update(
+ $healthData->only([
+ 'php_version',
+ 'db_type',
+ 'db_version',
+ 'cms_version',
+ 'server_os'
51
+ ])->toArray()
52
+ );
53
54
0 commit comments