Completed
Push — master ( 5b9d51...a4748b )
by Vitaliy
12s
created
src/DbalDataProvider.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
 
159 159
     public function filter($fieldName, $operator, $value)
160 160
     {
161
-         switch ($operator) {
161
+            switch ($operator) {
162 162
             case "eq":
163 163
                 $operator = '=';
164 164
                 break;
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
                 break;
168 168
             case "gt":
169 169
                 $operator = '>';    
170
-                 break;
170
+                    break;
171 171
             case "lt":
172 172
                 $operator = '<';    
173 173
                 break;
Please login to merge, or discard this patch.
src/EloquentDataProvider.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
                 break;
130 130
             case "gt":
131 131
                 $operator = '>';    
132
-                 break;
132
+                    break;
133 133
             case "lt":
134 134
                 $operator = '<';    
135 135
                 break;
Please login to merge, or discard this patch.
src/GridInputProcessor.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -38,11 +38,11 @@
 block discarded – undo
38 38
 
39 39
     protected function loadInput()
40 40
     {
41
-      if (version_compare(App::version(), '6.0', '>=')) {
41
+        if (version_compare(App::version(), '6.0', '>=')) {
42 42
         $this->input = \Illuminate\Support\Facades\Request::input($this->getKey(), []);
43
-      } else {
43
+        } else {
44 44
         $this->input = \Illuminate\Support\Facades\Input::get($this->getKey(), []);
45
-      }
45
+        }
46 46
     }
47 47
 
48 48
     /**
Please login to merge, or discard this patch.
src/Components/Laravel5/Pager.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,11 +24,11 @@
 block discarded – undo
24 24
     protected function setupPaginationForReading()
25 25
     {
26 26
         Paginator::currentPageResolver(function () {
27
-          if (version_compare(App::version(), '6.0', '>=')) {
27
+            if (version_compare(App::version(), '6.0', '>=')) {
28 28
             return \Illuminate\Support\Facades\Request::input("$this->input_key.page", 1);
29
-          } else {
29
+            } else {
30 30
             return \Illuminate\Support\Facades\Input::get("$this->input_key.page", 1);
31
-          }
31
+            }
32 32
         });
33 33
     }
34 34
 
Please login to merge, or discard this patch.
src/Components/PhpSpreadsheetExport.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -68,20 +68,20 @@  discard block
 block discarded – undo
68 68
         }
69 69
     }
70 70
 
71
-	/**
72
-	 *
73
-	 * @return array
74
-	 */
75
-	function headings(): array
71
+    /**
72
+     *
73
+     * @return array
74
+     */
75
+    function headings(): array
76 76
     {
77 77
         return $this->getHeaderRow();
78
-	}
78
+    }
79 79
 
80
-	/**
81
-	 *
82
-	 * @return array
83
-	 */
84
-	function registerEvents(): array
80
+    /**
81
+     *
82
+     * @return array
83
+     */
84
+    function registerEvents(): array
85 85
     {
86 86
         return [
87 87
             BeforeSheet::class => function(BeforeSheet $event) {
@@ -91,6 +91,6 @@  discard block
 block discarded – undo
91 91
                 }
92 92
             }
93 93
         ];
94
-	}
94
+    }
95 95
 
96 96
 }
Please login to merge, or discard this patch.