public function getTotalTime() : float { $totalTime = 0; foreach ($this->data as $handled) { $totalTime += array_sum(array_map(fn(array $el): float => $el['time'], $handled)); } return $totalTime; }