Automattic\WooCommerce\Internal\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.3.3

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