You are here

function is_rejected in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/guzzlehttp/promises/src/functions.php \GuzzleHttp\Promise\is_rejected()

Returns true if a promise is rejected.

Parameters

PromiseInterface $promise:

Return value

bool

File

vendor/guzzlehttp/promises/src/functions.php, line 421

Namespace

GuzzleHttp\Promise

Code

function is_rejected(PromiseInterface $promise) {
  return $promise
    ->getState() === PromiseInterface::REJECTED;
}