Skip to content

Commit 563cd63

Browse files
committed
cs: various fixes
1 parent 4fa6d3f commit 563cd63

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Laravel/workbench/database/migrations/2025_09_26_000001_create_author_with_groups_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*/
2222
public function up(): void
2323
{
24-
Schema::create('author_with_groups', function (Blueprint $table) {
24+
Schema::create('author_with_groups', function (Blueprint $table): void {
2525
$table->id();
2626
$table->string('name');
2727
$table->timestamps();

src/Laravel/workbench/database/migrations/2025_09_26_000002_create_book_with_relations_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*/
2222
public function up(): void
2323
{
24-
Schema::create('book_with_relations', function (Blueprint $table) {
24+
Schema::create('book_with_relations', function (Blueprint $table): void {
2525
$table->id();
2626
$table->string('title');
2727
$table->foreignId('author_with_group_id')->constrained();

0 commit comments

Comments
 (0)