Returns true if a promise is fulfilled.
public static function fulfilled(PromiseInterface $promise) : bool { return $promise->getState() === PromiseInterface::FULFILLED; }