|
@@ 274-276 (lines=3) @@
|
| 271 |
|
// the values in the list of bindings so we can make the sets statements. |
| 272 |
|
$columns = []; |
| 273 |
|
|
| 274 |
|
foreach ($values as $key => $value) { |
| 275 |
|
$columns[] = $this->wrap($key) . ' = ' . $this->parameter($value); |
| 276 |
|
} |
| 277 |
|
|
| 278 |
|
$columns = implode(', ', $columns); |
| 279 |
|
|
|
@@ 346-348 (lines=3) @@
|
| 343 |
|
// the values in the list of bindings so we can make the sets statements. |
| 344 |
|
$columns = []; |
| 345 |
|
|
| 346 |
|
foreach ($values as $key => $value) { |
| 347 |
|
$columns[] = $this->wrap($key) . ' = ' . $this->parameter($value); |
| 348 |
|
} |
| 349 |
|
|
| 350 |
|
$columns = implode(', ', $columns); |
| 351 |
|
|