Automattic\WooCommerce\Internal\Fulfillments\Providers

USPSShippingProvider::get_shipping_from_countriespublicWC 1.0

Gets the list of origin countries supported by USPS.

Method of the class: USPSShippingProvider{}

No Hooks.

Returns

Array. Array of country codes (only 'US').

Usage

$USPSShippingProvider = new USPSShippingProvider();
$USPSShippingProvider->get_shipping_from_countries(): array;

USPSShippingProvider::get_shipping_from_countries() code WC 10.3.3

public function get_shipping_from_countries(): array {
	return array( 'US' ); // USPS only ships from the United States.
}