WC_Order_Item_Tax::is_compound()publicWC 1.0

Is this a compound tax rate?

Method of the class: WC_Order_Item_Tax{}

No Hooks.

Return

true|false.

Usage

$WC_Order_Item_Tax = new WC_Order_Item_Tax();
$WC_Order_Item_Tax->is_compound();

WC_Order_Item_Tax::is_compound() code WC 8.7.0

public function is_compound() {
	return $this->get_compound();
}