Automattic\WooCommerce\Internal\Admin\Settings\PaymentProviders

PseudoWCPaymentGateway::is_onboarding_startedpublicWC 1.0

Check if the gateway has started onboarding.

Method of the class: PseudoWCPaymentGateway{}

No Hooks.

Returns

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

Usage

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

PseudoWCPaymentGateway::is_onboarding_started() code WC 9.9.4

public function is_onboarding_started(): bool {
	return $this->onboarding_started;
}