We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8221eb3 commit 824745cCopy full SHA for 824745c
src/Parallel.php
@@ -78,7 +78,8 @@ public function wait(bool $throw = true): array
78
$executionException = new ParallelExecutionException($message);
79
$executionException->setResults($this->results);
80
$executionException->setThrowables($this->throwables);
81
- unset($this->results, $this->throwables);
+ $this->results = [];
82
+ $this->throwables = [];
83
throw $executionException;
84
}
85
return $this->results;
0 commit comments