Skip to content

Commit

Permalink
Merge pull request #20 from chocofamilyme/query-time-fix
Browse files Browse the repository at this point in the history
Update QueryListener.php
  • Loading branch information
vsvp21 authored May 9, 2023
2 parents a305f35 + b3140af commit 97dfcff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Listeners/QueryListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function handle(QueryExecuted $event): void
'query.sql' => $event->sql,
'query.bindings' => implode(',', $event->bindings),
'query.connection_name' => $event->connectionName,
'query.time' => $event->time
'query.time' => (string)$event->time
], $event->time/1000);
}
}

0 comments on commit 97dfcff

Please sign in to comment.