Passed
Pull Request — master (#33)
by
unknown
19:38
created
app/Http/Controllers/Core/ExportController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
         // With conditions
64 64
         if ($request->input('with_conditions') === '1') {
65 65
             // TODO: Build $conditions['search'] earlier in the export process to match filter format...
66
-            $conditions = ['search' => json_decode($request->input('conditions'))];
66
+            $conditions = [ 'search' => json_decode($request->input('conditions')) ];
67 67
             $export = $export->withConditions($conditions);
68 68
         }
69 69
 
Please login to merge, or discard this patch.
database/migrations/2018_04_15_000035_alter_filter_module.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      */
26 26
     public function down()
27 27
     {
28
-        Schema::table($this->tablePrefix . 'filters', function (Blueprint $table) {
28
+        Schema::table($this->tablePrefix.'filters', function(Blueprint $table) {
29 29
             $table->renameColumn('order', 'order_by');
30 30
         });
31 31
     }
Please login to merge, or discard this patch.