From 5ecc7586e43bd03cf6ad9860119ab70a6cbebabc Mon Sep 17 00:00:00 2001 From: GertjanRoke Date: Wed, 22 Sep 2021 20:02:43 +0000 Subject: [PATCH] Fix styling --- tests/migrations/ModelTableMigration.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/migrations/ModelTableMigration.php b/tests/migrations/ModelTableMigration.php index cc920e0..d3a1fbc 100644 --- a/tests/migrations/ModelTableMigration.php +++ b/tests/migrations/ModelTableMigration.php @@ -9,7 +9,7 @@ class ModelTableMigration { public function up() { - Schema::create('models', function(Blueprint $table) { + Schema::create('models', function (Blueprint $table) { $table->id(); $table->string('title')->nullable(); $table->boolean('active')->default(false);