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