From a48639b7bc0bdf1ba545d3703bdc649cdcb9f285 Mon Sep 17 00:00:00 2001 From: Rodrigo Primo Date: Tue, 8 Jan 2019 13:57:25 -0200 Subject: [PATCH] Fix PHPCS violations automatilly with PHPCBF --- templates/emails/email-order-items.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/templates/emails/email-order-items.php b/templates/emails/email-order-items.php index 66f64fdb673..5c168bbbd0a 100644 --- a/templates/emails/email-order-items.php +++ b/templates/emails/email-order-items.php @@ -56,9 +56,12 @@ foreach ( $items as $item_id => $item ) : // allow other plugins to add additional product information here. do_action( 'woocommerce_order_item_meta_start', $item_id, $item, $order, $plain_text ); - wc_display_item_meta( $item, array( - 'label_before' => '', - ) ); + wc_display_item_meta( + $item, + array( + 'label_before' => '', + ) + ); // allow other plugins to add additional product information here. do_action( 'woocommerce_order_item_meta_end', $item_id, $item, $order, $plain_text );