public function RejectedPromise::otherwise in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/guzzlehttp/promises/src/RejectedPromise.php \GuzzleHttp\Promise\RejectedPromise::otherwise()
Appends a rejection handler callback to the promise, and returns a new promise resolving to the return value of the callback if it is called, or to its original fulfillment value if the promise is instead fulfilled.
Parameters
callable $onRejected Invoked when the promise is rejected.:
Return value
Overrides PromiseInterface::otherwise
File
- vendor/
guzzlehttp/ promises/ src/ RejectedPromise.php, line 51
Class
- RejectedPromise
- A promise that has been rejected.
Namespace
GuzzleHttp\PromiseCode
public function otherwise(callable $onRejected) {
return $this
->then(null, $onRejected);
}