Fix Squiz.ControlStructures.ControlSignature violations

This commit fixes all violations of the Squiz.ControlStructures.ControlSignature sniff automatically using phpcbf.
This commit is contained in:
Rodrigo Primo 2019-12-20 15:09:09 -03:00
parent 24cc92e67a
commit 90dbd8295f
1 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,8 @@ get_header( 'shop' ); ?>
do_action( 'woocommerce_before_main_content' );
?>
<?php while ( have_posts() ) : the_post(); ?>
<?php while ( have_posts() ) : ?>
<?php the_post(); ?>
<?php wc_get_template_part( 'content', 'single-product' ); ?>