run(...$values); ksort($results); return array_combine($keys, $results); } /** * Start the given tasks in the background after the current task has finished. */ public function defer(Closure|array $tasks): DeferredCallback { return defer(fn () => $this->run($tasks)); } }