Automattic\WooCommerce\Internal\Admin\Settings\PaymentProviders

PseudoWCPaymentGateway::is_dev_modepublicWC 1.0

Check if the gateway is in dev mode.

Method of the class: PseudoWCPaymentGateway{}

No Hooks.

Returns

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

Usage

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

PseudoWCPaymentGateway::is_dev_mode() code WC 9.9.4

public function is_dev_mode(): bool {
	return $this->dev_mode;
}