WC_Tax::format_tax_rate_city
Format the city.
Method of the class: WC_Tax{}
No Hooks.
Returns
String.
Usage
$result = WC_Tax::format_tax_rate_city( $city );
- $city(string) (required)
- Value to format.
WC_Tax::format_tax_rate_city() WC Tax::format tax rate city code WC 10.7.0
private static function format_tax_rate_city( $city ) {
return strtoupper( trim( $city ) );
}