@@ -49,7 +49,7 @@ |
||
49 | 49 | |
50 | 50 | foreach ($references as &$value) { |
51 | 51 | if (is_string($value)) { |
52 | - $value = "\"" . $value ."\""; |
|
52 | + $value = "\"" . $value . "\""; |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | if ($value instanceof AbstractTable) { |
@@ -238,8 +238,8 @@ |
||
238 | 238 | private function compileInsertValues(AbstractBuilder $qb) |
239 | 239 | { |
240 | 240 | if ($qb instanceof Component\InsertValuesComponentInterface) { |
241 | - return 'VALUES ' . implode(', ', array_map(function (array $values) { |
|
242 | - return '('. implode(', ', $values) . ')'; |
|
241 | + return 'VALUES ' . implode(', ', array_map(function(array $values) { |
|
242 | + return '(' . implode(', ', $values) . ')'; |
|
243 | 243 | }, $qb->getValues())); |
244 | 244 | } |
245 | 245 |