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 9de3ec8 commit f5143feCopy full SHA for f5143fe
src/Deferred.php
@@ -13,11 +13,34 @@
13
*/
14
final class Deferred implements Promise
15
{
16
+ /**
17
+ * @var ResponseInterface|null
18
+ */
19
private $value;
20
+
21
22
+ * @var Exception|null
23
24
private $failure;
25
26
27
+ * @var string
28
29
private $state;
30
31
32
+ * @var callable
33
34
private $waitCallback;
35
36
37
+ * @var callable[]
38
39
private $onFulfilledCallbacks;
40
41
42
43
44
private $onRejectedCallbacks;
45
46
public function __construct(callable $waitCallback)
0 commit comments