@@ -68,7 +68,7 @@ |
||
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; |