1 | <?php |
||
21 | class DeferredProxy implements DeferredInterface |
||
22 | { |
||
23 | /** |
||
24 | * @var DeferredInterface |
||
25 | */ |
||
26 | protected $deferred; |
||
27 | |||
28 | /** |
||
29 | * @var Delegate |
||
30 | */ |
||
31 | protected $onFulfilled; |
||
32 | |||
33 | /** |
||
34 | * @var Delegate |
||
35 | */ |
||
36 | protected $onRejected; |
||
37 | |||
38 | /** |
||
39 | * @var Delegate |
||
40 | */ |
||
41 | protected $onNotify; |
||
42 | |||
43 | /** |
||
44 | * @var bool |
||
45 | */ |
||
46 | protected $notifyPropagation; |
||
47 | |||
48 | /** |
||
49 | * @param DeferredInterface $deferred |
||
50 | * @param callable $onFulfilled |
||
51 | * @param callable $onRejected |
||
52 | * @param callable $onNotify |
||
53 | * @param bool $notifyPropagation |
||
54 | * |
||
55 | * @throws \InvalidArgumentException |
||
56 | */ |
||
57 | public function __construct( |
||
81 | |||
82 | /** |
||
83 | * {@inheritdoc} |
||
84 | */ |
||
85 | public function promise() |
||
89 | |||
90 | /** |
||
91 | * {@inheritdoc} |
||
92 | */ |
||
93 | public function resolve($value = null) |
||
108 | |||
109 | /** |
||
110 | * {@inheritdoc} |
||
111 | */ |
||
112 | public function reject($reason = null) |
||
126 | |||
127 | /** |
||
128 | * {@inheritdoc} |
||
129 | */ |
||
130 | public function notify($state = null) |
||
145 | } |
||
146 |
Scrutinizer analyzes your
composer.json
/composer.lock
file if available to determine the classes, and functions that are defined by your dependencies.It seems like the listed class was neither found in your dependencies, nor was it found in the analyzed files in your repository. If you are using some other form of dependency management, you might want to disable this analysis.