Test Setup Failed
Push — master ( cb0bb4...2baf3b )
by Robin
02:42
created
src/queue/Translation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     {
37 37
         if (empty($this->term)) {
38 38
             sweep();
39
-            array_map(function ($u) {
39
+            array_map(function($u) {
40 40
                 self::dispatch($u, $this->locales)->onQueue('translation');
41 41
             }, VocabTerm::get()->all());
42 42
         } else {
Please login to merge, or discard this patch.
src/migration/2019_03_11_103021_create_vocabularies_table.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     public function up()
20 20
     {
21 21
         $connection = config('trans-helper.database.connection') ?: config('database.default');
22
-        Schema::connection($connection)->create(config('trans-helper.database.table.cite'), function (Blueprint $table) {
22
+        Schema::connection($connection)->create(config('trans-helper.database.table.cite'), function(Blueprint $table) {
23 23
             $table->bigIncrements('id');
24 24
             $table->string('file', 256)->default('');
25 25
             $table->unsignedBigInteger('line');
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
         Schema::connection($connection)->create(
40 40
             config('trans-helper.database.table.term'),
41
-            function (Blueprint $table) {
41
+            function(Blueprint $table) {
42 42
                 $table->bigIncrements('id');
43 43
                 $table->string('namespace', 256)->default('');
44 44
                 $table->string('term', 256)->default('');
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
         Schema::connection($connection)->create(
57 57
             config('trans-helper.database.table.link'),
58
-            function (Blueprint $table) {
58
+            function(Blueprint $table) {
59 59
                 $table->unsignedBigInteger('cited');
60 60
                 $table->unsignedBigInteger('vocab');
61 61
 
Please login to merge, or discard this patch.