Automattic\WooCommerce\Admin\Features\Fulfillments\Providers

FedExShippingProvider::get_namepublicWC 1.0

Gets the display name of the provider.

Method of the class: FedExShippingProvider{}

No Hooks.

Returns

String. The provider name 'FedEx'.

Usage

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

FedExShippingProvider::get_name() code WC 10.8.1

public function get_name(): string {
	return 'FedEx';
}