Test Setup Failed
Push — master ( 84b837...47ca50 )
by Jeremy
10:45 queued 06:02
created
tests/TestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Database/TestMigrations/2014_10_12_000000_create_users_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.