Passed
Push — master ( bc7d2f...9c0720 )
by Vasyl
02:18
created
database/migrations/create_taxonomies_table.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -82,15 +82,15 @@
 block discarded – undo
82 82
      */
83 83
     public function createTermablesTable()
84 84
     {
85
-         Schema::create('termables', function (Blueprint $table) {
86
-             $table->unsignedInteger('term_id');
87
-             $table->morphs('termable');
85
+            Schema::create('termables', function (Blueprint $table) {
86
+                $table->unsignedInteger('term_id');
87
+                $table->morphs('termable');
88 88
     
89
-             $table->foreign('term_id')
90
-                 ->references('id')
91
-                 ->on('terms')
92
-                 ->onDelete('CASCADE');
93
-         });
89
+                $table->foreign('term_id')
90
+                    ->references('id')
91
+                    ->on('terms')
92
+                    ->onDelete('CASCADE');
93
+            });
94 94
     }
95 95
 
96 96
     /**
Please login to merge, or discard this patch.