Skip to content

Commit 58e6f2f

Browse files
committed
Update PHP minimum version to 8.0 and dependencies to latest compatible version
1 parent a7a008c commit 58e6f2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Connection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ protected function execute(array $prepared): bool
657657
$start = microtime(true);
658658
$result = $prepared['statement']->execute();
659659
$executionTime = microtime(true) - $start;
660-
$sqlLog['time'] = (int)($executionTime * 1000); // millisecond
660+
$sqlLog['time'] = round($executionTime * 1000, 2); // millisecond
661661

662662
$this->logs[] = $sqlLog;
663663

0 commit comments

Comments
 (0)