WC_Cart::set_coupon_discount_tax_totals()publicWC 3.2.0

Sets the array of calculated coupon tax totals.

Method of the class: WC_Cart{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Cart = new WC_Cart();
$WC_Cart->set_coupon_discount_tax_totals( $value );
$value(array)
Value to set.
Default: array()

Changelog

Since 3.2.0 Introduced.

WC_Cart::set_coupon_discount_tax_totals() code WC 8.6.1

public function set_coupon_discount_tax_totals( $value = array() ) {
	$this->coupon_discount_tax_totals = (array) $value;
}