diff --git a/app/modules/Profiler/Interfaces/Queries/FindFlameChartByUuidHandler.php b/app/modules/Profiler/Interfaces/Queries/FindFlameChartByUuidHandler.php index e95c134..8900e0f 100644 --- a/app/modules/Profiler/Interfaces/Queries/FindFlameChartByUuidHandler.php +++ b/app/modules/Profiler/Interfaces/Queries/FindFlameChartByUuidHandler.php @@ -42,7 +42,7 @@ public function __invoke(FindFlameChartByUuid $query): array $eventData = [ 'name' => $edge->getCallee(), 'start' => 0, // Temporarily zero, will adjust based on the parent later - 'duration' => $duration, + 'duration' => $duration > 0 ? \round($duration / 1_000, 3) : 0, 'type' => 'task', 'children' => [], 'cost' => [ @@ -72,7 +72,7 @@ public function __invoke(FindFlameChartByUuid $query): array return $waterfall; } - private function adjustStartTimes(&$eventList, $startTime): void + private function adjustStartTimes(array &$eventList, float|int $startTime): void { foreach ($eventList as &$event) { $event['start'] = $startTime;