Skip to content

Commit 6413e93

Browse files
committed
fix formatting
1 parent d82bde1 commit 6413e93

File tree

4 files changed

+8
-11
lines changed

4 files changed

+8
-11
lines changed

app/Models/Stand/StandReservationPlan.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,4 @@ public function approvedBy(): BelongsTo
3939
{
4040
return $this->belongsTo(User::class, 'approved_by');
4141
}
42-
43-
}
42+
}

app/Models/Stand/StandReservationPlanStatus.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ enum StandReservationPlanStatus: string
99
case APPROVED = 'approved';
1010
case REJECTED = 'rejected';
1111
case IMPORTED = 'imported';
12-
13-
}
12+
}

database/migrations/2026_04_08_000000_create_stand_reservation_plans_table.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,9 @@
55
use Illuminate\Database\Schema\Blueprint;
66
use Illuminate\Support\Facades\Schema;
77

8-
return new class extends Migration {
8+
return new class () extends Migration {
99
public function up(): void
1010
{
11-
12-
1311
Schema::create('stand_reservation_plans', function (Blueprint $table): void {
1412
$table->id();
1513
$table->string('name');
@@ -32,4 +30,4 @@ public function down(): void
3230
{
3331
Schema::dropIfExists('stand_reservation_plans');
3432
}
35-
};
33+
};

database/migrations/2026_04_08_000100_add_vaa_role.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
use App\Models\User\RoleKeys;
55
use Illuminate\Database\Migrations\Migration;
66

7-
return new class extends Migration {
7+
return new class () extends Migration {
88
public function up(): void
99
{
1010
Role::create([
@@ -17,5 +17,6 @@ public function down(): void
1717
{
1818
Role::where('key', RoleKeys::VAA->value)->delete();
1919
}
20-
21-
};
20+
21+
22+
};

0 commit comments

Comments
 (0)