Completed
Push — master ( f8d19f...145f77 )
by James Ekow Abaka
03:49
created
src/FilterCompiler.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -271,8 +271,7 @@
 block discarded – undo
271 271
             if(is_numeric($key))
272 272
             {
273 273
                 $rewritten["filter_bind_" . ($key + 1)] = $value;
274
-            }
275
-            else
274
+            } else
276 275
             {
277 276
                 $rewritten[$key] = $value;
278 277
             }
Please login to merge, or discard this patch.
src/QueryParameters.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -92,10 +92,10 @@
 block discarded – undo
92 92
         if ($numValues === 1) {
93 93
             $key = "filter_{$startIndex}";
94 94
             if($values[0] === null) {
95
-               $this->whereClause .= "{$field} is NULL";
95
+                $this->whereClause .= "{$field} is NULL";
96 96
             } else {
97
-               $this->whereClause .= "{$field} = :$key";
98
-               $this->boundData[$key] = reset($values);
97
+                $this->whereClause .= "{$field} = :$key";
98
+                $this->boundData[$key] = reset($values);
99 99
             }
100 100
         } else {
101 101
             $this->whereClause .= "{$field} IN (";
Please login to merge, or discard this patch.