Automattic\WooCommerce\Internal\Admin\Settings\PaymentProviders

PseudoWCPaymentGateway::is_onboarding_completedpublicWC 1.0

Check if the gateway has completed onboarding.

Method of the class: PseudoWCPaymentGateway{}

No Hooks.

Returns

true|false. True if the gateway has completed onboarding, false otherwise.

Usage

$PseudoWCPaymentGateway = new PseudoWCPaymentGateway();
$PseudoWCPaymentGateway->is_onboarding_completed(): bool;

PseudoWCPaymentGateway::is_onboarding_completed() code WC 9.8.5

public function is_onboarding_completed(): bool {
	return $this->onboarding_completed;
}