function is_fulfilled in Auth0 Single Sign On 8.2
Returns true if a promise is fulfilled.
Parameters
PromiseInterface $promise:
Return value
bool
File
- vendor/
guzzlehttp/ promises/ src/ functions.php, line 418
Namespace
GuzzleHttp\PromiseCode
function is_fulfilled(PromiseInterface $promise) {
return $promise
->getState() === PromiseInterface::FULFILLED;
}