Automattic\WooCommerce\Internal\Fulfillments\Providers
USPSShippingProvider::get_shipping_from_countries
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() 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.
}