Skip to content

Commit 87caf52

Browse files
mckenzieartsgithub-actions[bot]
authored andcommitted
Apply php-cs-fixer changes
1 parent 09a6665 commit 87caf52

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

app/Providers/AppServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
use Illuminate\Support\ServiceProvider;
2222
use Illuminate\Support\Str;
2323
use Spatie\Health\Checks\Checks\CacheCheck;
24+
use Spatie\Health\Checks\Checks\DatabaseCheck;
2425
use Spatie\Health\Checks\Checks\DebugModeCheck;
2526
use Spatie\Health\Checks\Checks\EnvironmentCheck;
2627
use Spatie\Health\Checks\Checks\ScheduleCheck;
27-
use Spatie\Health\Facades\Health;
2828
use Spatie\Health\Checks\Checks\UsedDiskSpaceCheck;
29-
use Spatie\Health\Checks\Checks\DatabaseCheck;
29+
use Spatie\Health\Facades\Health;
3030

3131
class AppServiceProvider extends ServiceProvider
3232
{

database/migrations/2022_07_13_195828_create_health_tables.php

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@
55
use Illuminate\Support\Facades\Schema;
66
use Spatie\Health\ResultStores\EloquentHealthResultStore;
77

8-
return new class extends Migration
9-
{
8+
return new class extends Migration {
109
public function up()
1110
{
1211
$tableName = EloquentHealthResultStore::getHistoryItemInstance()->getTable();
13-
12+
1413
Schema::create($tableName, function (Blueprint $table) {
1514
$table->id();
1615

@@ -25,8 +24,8 @@ public function up()
2524

2625
$table->timestamps();
2726
});
28-
29-
Schema::table($tableName, function(Blueprint $table) {
27+
28+
Schema::table($tableName, function (Blueprint $table) {
3029
$table->index('created_at');
3130
$table->index('batch');
3231
});

0 commit comments

Comments
 (0)