YoastSEO_Vendor\GuzzleHttp\Promise
FulfilledPromise::otherwise() public Yoast 1.0
{} Это метод класса: FulfilledPromise{}
Хуков нет.
Возвращает
Null. Ничего.
Использование
$FulfilledPromise = new FulfilledPromise(); $FulfilledPromise->otherwise( $onRejected );
Код FulfilledPromise::otherwise() FulfilledPromise::otherwise Yoast 15.6.2
public function otherwise(callable $onRejected)
{
return $this->then(null, $onRejected);
}