Automattic\WooCommerce\Admin\Features\Fulfillments\Providers

CustomShippingProvider::get_namepublicWC 1.0

Get the name of the shipping provider.

Method of the class: CustomShippingProvider{}

No Hooks.

Returns

String.

Usage

$CustomShippingProvider = new CustomShippingProvider();
$CustomShippingProvider->get_name(): string;

CustomShippingProvider::get_name() code WC 10.9.4

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