Completed
Push — master ( 6943ef...15a38e )
by Song
02:31
created
src/Grid/Concerns/HasQuickSearch.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
             $this->search = $search;
42 42
         }
43 43
 
44
-        return tap(new Tools\QuickSearch(), function ($search) {
44
+        return tap(new Tools\QuickSearch(), function($search) {
45 45
             $this->tools->append($search);
46 46
         });
47 47
     }
@@ -125,14 +125,14 @@  discard block
 block discarded – undo
125 125
      */
126 126
     protected function parseQueryBindings(array $queries)
127 127
     {
128
-        $columnMap = $this->columns->mapWithKeys(function (Column $column) {
128
+        $columnMap = $this->columns->mapWithKeys(function(Column $column) {
129 129
             $label = $column->getLabel();
130 130
             $name = $column->getName();
131 131
 
132 132
             return [$label => $name, $name => $name];
133 133
         });
134 134
 
135
-        return collect($queries)->map(function ($query) use ($columnMap) {
135
+        return collect($queries)->map(function($query) use ($columnMap) {
136 136
             $segments = explode(':', $query, 2);
137 137
 
138 138
             if (count($segments) != 2) {
Please login to merge, or discard this patch.