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 a670bf3 commit 8cd292aCopy full SHA for 8cd292a
1 file changed
src/Runtime.php
@@ -10,9 +10,6 @@
10
11
final class Runtime
12
{
13
- /** @var string */
14
- private $id;
15
-
16
/** @var ParallelRuntime */
17
private $runtime;
18
@@ -22,7 +19,6 @@ final class Runtime
22
19
public function __construct(FutureToPromiseConverter $futureToPromiseConverter, string $autoload)
23
20
24
21
$this->runtime = new ParallelRuntime($autoload);
25
- $this->id = \spl_object_hash($this->runtime);
26
$this->futureToPromiseConverter = $futureToPromiseConverter;
27
}
28
0 commit comments