@@ -13,14 +13,14 @@ |
||
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 |
@@ -26,7 +26,7 @@ |
||
26 | 26 | | |
27 | 27 | */ |
28 | 28 | |
29 | - 'paths' => [app_path('Commands')], |
|
29 | + 'paths' => [ app_path('Commands') ], |
|
30 | 30 | |
31 | 31 | /* |
32 | 32 | |-------------------------------------------------------------------------- |