From 85ca14a06de01895c81b64e8774661b2651b4219 Mon Sep 17 00:00:00 2001 From: Lexidor Digital <31805625+lexidor@users.noreply.github.com> Date: Thu, 27 Apr 2023 16:50:56 +0200 Subject: [PATCH] Remove underscores from numeric literal --- src/AsyncMysql/AsyncMysqlConnectResult.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AsyncMysql/AsyncMysqlConnectResult.php b/src/AsyncMysql/AsyncMysqlConnectResult.php index e50fe08..fecd331 100644 --- a/src/AsyncMysql/AsyncMysqlConnectResult.php +++ b/src/AsyncMysql/AsyncMysqlConnectResult.php @@ -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 {