Fix PHPCS violations automatilly with PHPCBF

This commit is contained in:
Rodrigo Primo 2019-01-08 13:57:25 -02:00
parent c31eb2ad0f
commit a48639b7bc
1 changed files with 6 additions and 3 deletions

View File

@ -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' => '<strong class="wc-item-meta-label" style="float: left; margin-right: .25em; clear: both">',
) );
wc_display_item_meta(
$item,
array(
'label_before' => '<strong class="wc-item-meta-label" style="float: left; margin-right: .25em; clear: both">',
)
);
// allow other plugins to add additional product information here.
do_action( 'woocommerce_order_item_meta_end', $item_id, $item, $order, $plain_text );