Skip to content

Commit b96a961

Browse files
committed
chore: format fixes
1 parent a37a9cf commit b96a961

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

database/migrations/2026_02_01_121714_add_maximum_compatibility_to_devices_table.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
{
99
public function up(): void
1010
{
11-
Schema::table("devices", function (Blueprint $table): void {
12-
$table->boolean("maximum_compatibility")->default(false);
11+
Schema::table('devices', function (Blueprint $table): void {
12+
$table->boolean('maximum_compatibility')->default(false);
1313
});
1414
}
1515

1616
public function down(): void
1717
{
18-
Schema::table("devices", function (Blueprint $table): void {
19-
$table->dropColumn("maximum_compatibility");
18+
Schema::table('devices', function (Blueprint $table): void {
19+
$table->dropColumn('maximum_compatibility');
2020
});
2121
}
2222
};

tests/Feature/Api/DeviceEndpointsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
$device = Device::factory()->create([
101101
'mac_address' => '00:11:22:33:44:55',
102102
'api_key' => 'test-api-key',
103-
'maximum_compatibility' => true
103+
'maximum_compatibility' => true,
104104
]);
105105

106106
$response = $this->withHeaders([

0 commit comments

Comments
 (0)