promise = new Internal\PrivatePromise(function (callable $resolve, callable $fail) { $this->resolve = $resolve; $this->fail = $fail; }); } /** * @return \Amp\Promise */ public function promise(): Promise { return $this->promise; } /** * Fulfill the promise with the given value. * * @param mixed $value */ public function resolve($value = null) { ($this->resolve)($value); } /** * Fails the promise the the given reason. * * @param \Throwable $reason */ public function fail(\Throwable $reason) { ($this->fail)($reason); } } } else { production: // PHP 7 production environment (zend.assertions=0) /** * An optimized version of Deferred for production environments that is itself the promise. Eval is used to * prevent IDEs and other tools from reporting multiple definitions. */ eval('final class Deferred implements Promise { use Internal\Placeholder { resolve as public; fail as public; } public function promise(): Promise { return $this; } }'); } } catch (\AssertionError $exception) { goto development; // zend.assertions=1 and assert.exception=1, use development definition. } // @codeCoverageIgnoreEnd