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:
parent
5349ffbb47
commit
325cbf443d
|
@ -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 ) : ?>
|
||||||
|
|
Loading…
Reference in New Issue