Automattic\WooCommerce\Blocks\Payments\Integrations

AbstractPaymentMethodType::get_supported_features()publicWC 1.0

Returns an array of supported features.

Method of the class: AbstractPaymentMethodType{}

No Hooks.

Return

String[].

Usage

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

AbstractPaymentMethodType::get_supported_features() code WC 8.6.1

public function get_supported_features() {
	return [ 'products' ];
}