Skip to content

Commit 1e78564

Browse files
committed
fixes
1 parent 371a15c commit 1e78564

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

system/Database/BaseBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2225,7 +2225,7 @@ protected function _updateBatch(string $table, array $values, string $index): st
22252225
$sql .= implode(
22262226
" UNION ALL\n",
22272227
array_map(
2228-
static fn($value) => 'SELECT ' . implode(', ', array_map(
2228+
static fn ($value) => 'SELECT ' . implode(', ', array_map(
22292229
static fn ($key, $index) => $index . ' ' . $key,
22302230
$keys,
22312231
$value

system/Database/MySQLi/Builder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ protected function _updateBatch(string $table, array $values, string $index): st
7575
$sql .= implode(
7676
" UNION ALL\n",
7777
array_map(
78-
static fn($value) => 'SELECT ' . implode(', ', array_map(
78+
static fn ($value) => 'SELECT ' . implode(', ', array_map(
7979
static fn ($key, $index) => $index . ' ' . $key,
8080
$keys,
8181
$value

system/Database/OCI8/Builder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ protected function _updateBatch(string $table, array $values, string $index): st
250250
$sql .= implode(
251251
" UNION ALL\n",
252252
array_map(
253-
static fn($value) => 'SELECT ' . implode(', ', array_map(
253+
static fn ($value) => 'SELECT ' . implode(', ', array_map(
254254
static fn ($key, $index) => $index . ' ' . $key,
255255
$keys,
256256
$value

0 commit comments

Comments
 (0)