wc_format_refund_total()WC 1.0

Make a refund total negative.

No Hooks.

Return

float.

Usage

wc_format_refund_total( $amount );
$amount(float) (required)
Refunded amount.

wc_format_refund_total() code WC 8.7.0

function wc_format_refund_total( $amount ) {
	return $amount * -1;
}