Remove space before comma in function call

There is PHPCS error about "Remove space before comma in function call". That needs to be removed.
This commit is contained in:
Chetan Prajapati 2017-12-20 22:07:48 +05:30 committed by GitHub
parent 5349ffbb47
commit 325cbf443d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -22,11 +22,11 @@ if ( ! defined( 'ABSPATH' ) ) {
<?php do_action( 'woocommerce_auth_page_header' ); ?> <?php do_action( 'woocommerce_auth_page_header' ); ?>
<h1><?php printf( __( '%s would like to connect to your store' , 'woocommerce' ), esc_html( $app_name ) ); ?></h1> <h1><?php printf( __( '%s would like to connect to your store', 'woocommerce' ), esc_html( $app_name ) ); ?></h1>
<?php wc_print_notices(); ?> <?php wc_print_notices(); ?>
<p><?php printf( __( 'This will give "%1$s" %2$s access which will allow it to:' , 'woocommerce' ), '<strong>' . esc_html( $app_name ) . '</strong>', '<strong>' . esc_html( $scope ) . '</strong>' ); ?></p> <p><?php printf( __( 'This will give "%1$s" %2$s access which will allow it to:', 'woocommerce' ), '<strong>' . esc_html( $app_name ) . '</strong>', '<strong>' . esc_html( $scope ) . '</strong>' ); ?></p>
<ul class="wc-auth-permissions"> <ul class="wc-auth-permissions">
<?php foreach ( $permissions as $permission ) : ?> <?php foreach ( $permissions as $permission ) : ?>