Code Duplication    Length = 4-4 lines in 2 locations

includes/abstracts/abstract-wc-order.php 1 location

@@ 1366-1369 (lines=4) @@
1363
			$tax_totals[ $code ]->formatted_amount  = wc_price( wc_round_tax_total( $tax_totals[ $code ]->amount ), array('currency' => $this->get_order_currency()) );
1364
		}
1365
1366
		if ( apply_filters( 'woocommerce_order_hide_zero_taxes', true ) ) {
1367
			$amounts    = array_filter( wp_list_pluck( $tax_totals, 'amount' ) );
1368
			$tax_totals = array_intersect_key( $tax_totals, $amounts );
1369
		}
1370
1371
		return apply_filters( 'woocommerce_order_tax_totals', $tax_totals, $this );
1372
	}

includes/class-wc-cart.php 1 location

@@ 776-779 (lines=4) @@
773
				}
774
			}
775
776
			if ( apply_filters( 'woocommerce_cart_hide_zero_taxes', true ) ) {
777
				$amounts    = array_filter( wp_list_pluck( $tax_totals, 'amount' ) );
778
				$tax_totals = array_intersect_key( $tax_totals, $amounts );
779
			}
780
781
			return apply_filters( 'woocommerce_cart_tax_totals', $tax_totals, $this );
782
		}