Skip to content

Commit 80fd004

Browse files
committed
preserve fields
1 parent 5b79bb7 commit 80fd004

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Services/FileMakerConnection.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -766,9 +766,9 @@ protected function logFMQuery($method, $url, $params, $start)
766766

767767
$this->event(new QueryExecuted(
768768
$sql,
769-
collect(data_get($params, 'query', []))->map(
770-
fn (array $binding, $index) => collect($binding)->map(fn ($value, $key) => $index . ': ' . $key . ': ' . $value)
771-
)->flatten()->all(),
769+
collect(data_get($params, 'query', []))->flatMap(
770+
fn (array $binding, $index) => collect($binding)->mapWithKeys(fn ($value, $key) => [$index.': '.$key => $value])
771+
)->all(),
772772
$this->getElapsedTime($start),
773773
$this,
774774
));

0 commit comments

Comments
 (0)