Automattic\WooCommerce\Blocks\Payments\Integrations

AbstractPaymentMethodType::get_name()publicWC 1.0

Returns the name of the payment method.

Method of the class: AbstractPaymentMethodType{}

No Hooks.

Return

null. Nothing (null).

Usage

$AbstractPaymentMethodType = new AbstractPaymentMethodType();
$AbstractPaymentMethodType->get_name();

AbstractPaymentMethodType::get_name() code WC 8.7.0

public function get_name() {
	return $this->name;
}