resolver = new Internal\Placeholder; $this->promise = new Internal\PrivatePromise($this->resolver); } /** * @return Promise */ public function promise(): Promise { return $this->promise; } /** * @return bool True if the contained promise has been resolved. */ public function isResolved(): bool { /** @psalm-suppress UndefinedInterfaceMethod */ return $this->resolver->isResolved(); } /** * Fulfill the promise with the given value. * * @param mixed $value * * @psalm-param TValue|Promise $value * * @return void */ public function resolve(mixed $value = null): void { /** @psalm-suppress UndefinedInterfaceMethod */ $this->resolver->resolve($value); } /** * Fails the promise the the given reason. * * @param \Throwable $reason * * @return void */ public function fail(\Throwable $reason): void { /** @psalm-suppress UndefinedInterfaceMethod */ $this->resolver->fail($reason); } }