Passed
Push — feat/adds-complex-queries ( 662f7e )
by Nuno
07:29
created
src/Engines/AlgoliaEngine.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
     {
109 109
         $operators = ['<', '<=', '=', '!=', '>=', '>'];
110 110
 
111
-        return collect($builder->wheres)->map(function ($value, $key) use ($operators) {
111
+        return collect($builder->wheres)->map(function($value, $key) use ($operators) {
112 112
             if (ends_with($key, $operators) || starts_with($value, $operators)) {
113 113
                 return $key.' '.$value;
114 114
             }
Please login to merge, or discard this patch.