Skip to content

Commit

Permalink
Remove underscores from numeric literal
Browse files Browse the repository at this point in the history
  • Loading branch information
lexidor committed Apr 27, 2023
1 parent 6a1ef35 commit 85ca14a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AsyncMysql/AsyncMysqlConnectResult.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public function __construct(bool $from_pool) {

<<__Override>>
public function elapsedMicros(): int {
return (int)($this->elapsed * 1_000_000);
return (int)($this->elapsed * 1000000);
}
<<__Override>>
public function startTime(): float {
Expand Down

0 comments on commit 85ca14a

Please sign in to comment.