public function FulfilledPromise::resolve in Auth0 Single Sign On 8.2
Resolve the promise with the given value.
Parameters
mixed $value:
Throws
\RuntimeException if the promise is already resolved.
Overrides PromiseInterface::resolve
File
- vendor/
guzzlehttp/ promises/ src/ FulfilledPromise.php, line 66
Class
- FulfilledPromise
- A promise that has been fulfilled.
Namespace
GuzzleHttp\PromiseCode
public function resolve($value) {
if ($value !== $this->value) {
throw new \LogicException("Cannot resolve a fulfilled promise");
}
}