Test Setup Failed
Branch master (e0d29d)
by Guillaume
03:48
created
Category
database/migrations/2019_05_01_192308_create_search_index_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,14 +13,14 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('searchIndex', function (Blueprint $table) {
16
+        Schema::create('searchIndex', function(Blueprint $table) {
17 17
             $table->integer('id');
18 18
             $table->text('name');
19 19
             $table->text('type');
20 20
             $table->text('path');
21 21
 
22 22
             $table->primary('id');
23
-            $table->unique(['name', 'type', 'path'], 'anchor');
23
+            $table->unique([ 'name', 'type', 'path' ], 'anchor');
24 24
         });
25 25
     }
26 26
 
Please login to merge, or discard this patch.
config/commands.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     |
27 27
     */
28 28
 
29
-    'paths' => [app_path('Commands')],
29
+    'paths' => [ app_path('Commands') ],
30 30
 
31 31
     /*
32 32
     |--------------------------------------------------------------------------
Please login to merge, or discard this patch.