@@ -44,7 +44,7 @@ |
||
44 | 44 | */ |
45 | 45 | public function getEnvironmentSetUp($app) |
46 | 46 | { |
47 | - $app->singleton('seed.handler', function ($app) { |
|
47 | + $app->singleton('seed.handler', function($app) { |
|
48 | 48 | return new SeedHandler($app, collect()); |
49 | 49 | }); |
50 | 50 |
@@ -15,7 +15,7 @@ |
||
15 | 15 | */ |
16 | 16 | public function up(): void |
17 | 17 | { |
18 | - Schema::create('users', function (Blueprint $table) { |
|
18 | + Schema::create('users', function(Blueprint $table) { |
|
19 | 19 | $table->id(); |
20 | 20 | $table->string('name'); |
21 | 21 | $table->string('email')->unique(); |