Passed
Push — develop ( b9ec32...f8791e )
by David
02:08 queued 01:43
created
src/Sql/Where/ArrayWhere.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
         $suffix = $keyPrefix = ($this->getUseParanthesis() ? ")" : "");
69 69
 
70 70
         return $prefix . implode($keyPrefix . ' ' . $this->getFieldOperator() . ' ' . $keySuffix, array_map(function($key, $value) use ($keySalt) {
71
-                            $saltedKey = $key . "-" .$keySalt;
71
+                            $saltedKey = $key . "-" . $keySalt;
72 72
                             $this->addData($saltedKey, $value);
73 73
                             return sprintf('%s = :%s', $key, $saltedKey);
74 74
                         }, array_keys($assocArray), array_values($assocArray))) . $suffix;
Please login to merge, or discard this patch.