Automattic\WooCommerce\Internal\Admin\Settings\PaymentProviders

PseudoWCPaymentGateway::is_test_mode_onboardingpublicWC 1.0

Check if the gateway is in test mode onboarding.

Method of the class: PseudoWCPaymentGateway{}

No Hooks.

Returns

true|false. True if the gateway is in test mode onboarding, false otherwise.

Usage

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

PseudoWCPaymentGateway::is_test_mode_onboarding() code WC 9.9.4

public function is_test_mode_onboarding(): bool {
	return $this->test_mode_onboarding;
}