Skip to content

Commit 62d6b05

Browse files
committed
Fix Generic.Formatting.MultipleStatementAlignment violations
This commit fixes all violations of the Generic.Formatting.MultipleStatementAlignment sniff automatically using phpcbf.
1 parent 179dd70 commit 62d6b05

24 files changed

+43
-43
lines changed

includes/abstracts/abstract-wc-integration.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,6 @@ public function admin_options() {
8080
*/
8181
public function init_settings() {
8282
parent::init_settings();
83-
$this->enabled = ! empty( $this->settings['enabled'] ) && 'yes' === $this->settings['enabled'] ? 'yes' : 'no';
83+
$this->enabled = ! empty( $this->settings['enabled'] ) && 'yes' === $this->settings['enabled'] ? 'yes' : 'no';
8484
}
8585
}

includes/abstracts/abstract-wc-log-handler.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ protected static function format_time( $timestamp ) {
3939
* @return string Formatted log entry.
4040
*/
4141
protected static function format_entry( $timestamp, $level, $message, $context ) {
42-
$time_string = self::format_time( $timestamp );
42+
$time_string = self::format_time( $timestamp );
4343
$level_string = strtoupper( $level );
44-
$entry = "{$time_string} {$level_string} {$message}";
44+
$entry = "{$time_string} {$level_string} {$message}";
4545

4646
return apply_filters( 'woocommerce_format_log_entry', $entry, array(
4747
'timestamp' => $timestamp,

includes/abstracts/abstract-wc-payment-gateway.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ public function admin_options() {
197197
*/
198198
public function init_settings() {
199199
parent::init_settings();
200-
$this->enabled = ! empty( $this->settings['enabled'] ) && 'yes' === $this->settings['enabled'] ? 'yes' : 'no';
200+
$this->enabled = ! empty( $this->settings['enabled'] ) && 'yes' === $this->settings['enabled'] ? 'yes' : 'no';
201201
}
202202

203203
/**
@@ -237,7 +237,7 @@ public function get_return_url( $order = null ) {
237237
*/
238238
public function get_transaction_url( $order ) {
239239

240-
$return_url = '';
240+
$return_url = '';
241241
$transaction_id = $order->get_transaction_id();
242242

243243
if ( ! empty( $this->view_transaction_url ) && ! empty( $transaction_id ) ) {
@@ -254,7 +254,7 @@ public function get_transaction_url( $order ) {
254254
*/
255255
protected function get_order_total() {
256256

257-
$total = 0;
257+
$total = 0;
258258
$order_id = absint( get_query_var( 'order-pay' ) );
259259

260260
// Gets order total from "pay for order" page.

includes/abstracts/abstract-wc-privacy.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ abstract class WC_Abstract_Privacy {
6161
* @param int $erase_priority Erase priority.
6262
*/
6363
public function __construct( $name = '', $export_priority = 5, $erase_priority = 10 ) {
64-
$this->name = $name;
64+
$this->name = $name;
6565
$this->export_priority = $export_priority;
66-
$this->erase_priority = $erase_priority;
66+
$this->erase_priority = $erase_priority;
6767
$this->init();
6868
}
6969

includes/admin/class-wc-admin-addons.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ class="addons-button <?php echo esc_attr( $style ); ?>"
537537
*/
538538
public static function output() {
539539
$section = isset( $_GET['section'] ) ? sanitize_text_field( wp_unslash( $_GET['section'] ) ) : '_featured';
540-
$search = isset( $_GET['search'] ) ? sanitize_text_field( wp_unslash( $_GET['search'] ) ) : '';
540+
$search = isset( $_GET['search'] ) ? sanitize_text_field( wp_unslash( $_GET['search'] ) ) : '';
541541

542542
if ( isset( $_GET['section'] ) && 'helper' === $_GET['section'] ) {
543543
do_action( 'woocommerce_helper_output' );

includes/admin/class-wc-admin-assets.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ public function admin_scripts() {
295295
if ( $post_id && in_array( get_post_type( $post_id ), wc_get_order_types( 'order-meta-boxes' ) ) ) {
296296
$order = wc_get_order( $post_id );
297297
if ( $order ) {
298-
$currency = $order->get_currency();
298+
$currency = $order->get_currency();
299299

300300
if ( ! $order->has_status( array( 'pending', 'failed', 'cancelled' ) ) ) {
301301
$remove_item_notice = $remove_item_notice . ' ' . __( "You may need to manually restore the item's stock.", 'woocommerce' );

includes/admin/class-wc-admin-setup-wizard.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1676,7 +1676,7 @@ public function get_wizard_in_cart_payment_gateways() {
16761676
if ( in_array( $klarna_or_square, array( 'klarna_checkout', 'klarna_payments' ), true ) ) {
16771677
$gateways[ $klarna_or_square ]['enabled'] = true;
16781678
$gateways[ $klarna_or_square ]['featured'] = false;
1679-
$offered_gateways += array(
1679+
$offered_gateways += array(
16801680
$klarna_or_square => $gateways[ $klarna_or_square ],
16811681
);
16821682
} else {

includes/admin/list-tables/class-wc-admin-list-table-products.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -124,11 +124,11 @@ public function define_columns( $columns ) {
124124
$show_columns['is_in_stock'] = __( 'Stock', 'woocommerce' );
125125
}
126126

127-
$show_columns['price'] = __( 'Price', 'woocommerce' );
128-
$show_columns['product_cat'] = __( 'Categories', 'woocommerce' );
129-
$show_columns['product_tag'] = __( 'Tags', 'woocommerce' );
130-
$show_columns['featured'] = '<span class="wc-featured parent-tips" data-tip="' . esc_attr__( 'Featured', 'woocommerce' ) . '">' . __( 'Featured', 'woocommerce' ) . '</span>';
131-
$show_columns['date'] = __( 'Date', 'woocommerce' );
127+
$show_columns['price'] = __( 'Price', 'woocommerce' );
128+
$show_columns['product_cat'] = __( 'Categories', 'woocommerce' );
129+
$show_columns['product_tag'] = __( 'Tags', 'woocommerce' );
130+
$show_columns['featured'] = '<span class="wc-featured parent-tips" data-tip="' . esc_attr__( 'Featured', 'woocommerce' ) . '">' . __( 'Featured', 'woocommerce' ) . '</span>';
131+
$show_columns['date'] = __( 'Date', 'woocommerce' );
132132

133133
return array_merge( $show_columns, $columns );
134134
}

includes/admin/reports/class-wc-report-taxes-by-code.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,8 @@ public function get_main_chart() {
160160
$tax_rows = array();
161161

162162
foreach ( $tax_rows_orders + $tax_rows_partial_refunds as $tax_row ) {
163-
$key = $tax_row->rate_id;
164-
$tax_rows[ $key ] = isset( $tax_rows[ $key ] ) ? $tax_rows[ $key ] : (object) array(
163+
$key = $tax_row->rate_id;
164+
$tax_rows[ $key ] = isset( $tax_rows[ $key ] ) ? $tax_rows[ $key ] : (object) array(
165165
'tax_amount' => 0,
166166
'shipping_tax_amount' => 0,
167167
'total_orders' => 0,
@@ -173,8 +173,8 @@ public function get_main_chart() {
173173
}
174174

175175
foreach ( $tax_rows_full_refunds as $tax_row ) {
176-
$key = $tax_row->rate_id;
177-
$tax_rows[ $key ] = isset( $tax_rows[ $key ] ) ? $tax_rows[ $key ] : (object) array(
176+
$key = $tax_row->rate_id;
177+
$tax_rows[ $key ] = isset( $tax_rows[ $key ] ) ? $tax_rows[ $key ] : (object) array(
178178
'tax_amount' => 0,
179179
'shipping_tax_amount' => 0,
180180
'total_orders' => 0,

includes/class-wc-query.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -290,8 +290,8 @@ public function pre_get_posts( $q ) {
290290
}
291291
} elseif ( ! empty( $_GET['orderby'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
292292
$q->set( 'page_id', (int) get_option( 'page_on_front' ) );
293-
$q->is_page = true;
294-
$q->is_home = false;
293+
$q->is_page = true;
294+
$q->is_home = false;
295295
$q->is_singular = true;
296296
}
297297
}

includes/class-wc-rate-limiter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public static function retried_too_soon( $action_id ) {
7272
* @return bool True if the option setting was successful, false otherwise.
7373
*/
7474
public static function set_rate_limit( $action_id, $delay ) {
75-
$option_name = self::storage_id( $action_id );
75+
$option_name = self::storage_id( $action_id );
7676
$next_try_allowed_at = time() + $delay;
7777
return update_option( $option_name, $next_try_allowed_at );
7878
}

includes/class-wc-shipping-zones.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ public static function get_zones( $context = 'admin' ) {
2929
$zones = array();
3030

3131
foreach ( $raw_zones as $raw_zone ) {
32-
$zone = new WC_Shipping_Zone( $raw_zone );
33-
$zones[ $zone->get_id() ] = $zone->get_data();
34-
$zones[ $zone->get_id() ]['zone_id'] = $zone->get_id();
32+
$zone = new WC_Shipping_Zone( $raw_zone );
33+
$zones[ $zone->get_id() ] = $zone->get_data();
34+
$zones[ $zone->get_id() ]['zone_id'] = $zone->get_id();
3535
$zones[ $zone->get_id() ]['formatted_zone_location'] = $zone->get_formatted_location();
3636
$zones[ $zone->get_id() ]['shipping_methods'] = $zone->get_shipping_methods( false, $context );
3737
}

includes/class-wc-tax.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@ public static function get_rate_label( $key_or_rate ) {
674674
*/
675675
public static function get_rate_percent( $key_or_rate ) {
676676
$rate_percent_value = self::get_rate_percent_value( $key_or_rate );
677-
$tax_rate_id = is_object( $key_or_rate ) ? $key_or_rate->tax_rate_id : $key_or_rate;
677+
$tax_rate_id = is_object( $key_or_rate ) ? $key_or_rate->tax_rate_id : $key_or_rate;
678678
return apply_filters( 'woocommerce_rate_percent', $rate_percent_value . '%', $tax_rate_id );
679679
}
680680

includes/data-stores/class-wc-webhook-data-store.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ public function search_webhooks( $args ) {
372372
protected function get_webhook_count( $status = 'active' ) {
373373
global $wpdb;
374374
$cache_key = WC_Cache_Helper::get_cache_prefix( 'webhooks' ) . $status . '_count';
375-
$count = wp_cache_get( $cache_key, 'webhooks' );
375+
$count = wp_cache_get( $cache_key, 'webhooks' );
376376

377377
if ( false === $count ) {
378378
$count = absint( $wpdb->get_var( $wpdb->prepare( "SELECT count( webhook_id ) FROM {$wpdb->prefix}wc_webhooks WHERE `status` = %s;", $status ) ) );

includes/theme-support/class-wc-twenty-twenty.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public static function output_content_wrapper_end() {
6868
* Set background color to white if it's default, otherwise don't touch it.
6969
*/
7070
public static function set_white_background() {
71-
$background = sanitize_hex_color_no_hash( get_theme_mod( 'background_color' ) );
71+
$background = sanitize_hex_color_no_hash( get_theme_mod( 'background_color' ) );
7272
$background_default = 'f5efe0';
7373

7474
// Don't change user's choice of background color.

includes/wc-cart-functions.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,8 @@ function wc_cart_totals_subtotal_html() {
203203
* Get shipping methods.
204204
*/
205205
function wc_cart_totals_shipping_html() {
206-
$packages = WC()->shipping()->get_packages();
207-
$first = true;
206+
$packages = WC()->shipping()->get_packages();
207+
$first = true;
208208

209209
foreach ( $packages as $i => $package ) {
210210
$chosen_method = isset( WC()->session->chosen_shipping_methods[ $i ] ) ? WC()->session->chosen_shipping_methods[ $i ] : '';

includes/wc-stock-functions.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ function wc_maybe_increase_stock_levels( $order_id ) {
120120
return;
121121
}
122122

123-
$stock_reduced = $order->get_data_store()->get_stock_reduced( $order_id );
123+
$stock_reduced = $order->get_data_store()->get_stock_reduced( $order_id );
124124
$trigger_increase = (bool) $stock_reduced;
125125

126126
// Only continue if we're increasing stock.
@@ -207,8 +207,8 @@ function wc_trigger_stock_change_notifications( $order, $changes ) {
207207
return;
208208
}
209209

210-
$order_notes = array();
211-
$no_stock_amount = absint( get_option( 'woocommerce_notify_no_stock_amount', 0 ) );
210+
$order_notes = array();
211+
$no_stock_amount = absint( get_option( 'woocommerce_notify_no_stock_amount', 0 ) );
212212

213213
foreach ( $changes as $change ) {
214214
$order_notes[] = $change['product']->get_formatted_name() . ' ' . $change['from'] . '&rarr;' . $change['to'];

includes/wc-user-functions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ function wc_modify_map_meta_cap( $caps, $cap, $user_id, $args ) {
538538
$caps[] = 'do_not_allow';
539539
} elseif ( wc_current_user_has_role( 'shop_manager' ) ) {
540540
// Shop managers can only edit customer info.
541-
$userdata = get_userdata( $args[0] );
541+
$userdata = get_userdata( $args[0] );
542542
$shop_manager_editable_roles = apply_filters( 'woocommerce_shop_manager_editable_roles', array( 'customer' ) );
543543
if ( property_exists( $userdata, 'roles' ) && ! empty( $userdata->roles ) && ! array_intersect( $userdata->roles, $shop_manager_editable_roles ) ) {
544544
$caps[] = 'do_not_allow';

includes/wccom-site/class-wc-wccom-site-installer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ function( $key ) use ( $plugin_folder ) {
564564
);
565565

566566
if ( 1 === count( $related_plugins ) ) {
567-
$plugin_key = array_keys( $related_plugins )[0];
567+
$plugin_key = array_keys( $related_plugins )[0];
568568
$plugin_data = $plugins[ $plugin_key ];
569569
return array(
570570
'name' => $plugin_data['Name'],

templates/emails/plain/email-order-items.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
foreach ( $items as $item_id => $item ) :
2323
if ( apply_filters( 'woocommerce_order_item_visible', true, $item ) ) {
24-
$product = $item->get_product();
24+
$product = $item->get_product();
2525
$sku = '';
2626
$purchase_note = '';
2727

tests/framework/helpers/class-wc-helper-product.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public static function create_variation_product() {
116116
)
117117
);
118118

119-
$attributes = array();
119+
$attributes = array();
120120

121121
$attribute = new WC_Product_Attribute();
122122
$attribute_data = self::create_attribute( 'size', array( 'small', 'large', 'huge' ) );

tests/unit-tests/cart/cart.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ public function test_cart_calculate_total_rounding_23917() {
260260
update_option( 'woocommerce_calc_taxes', 'yes' );
261261
update_option( 'woocommerce_tax_round_at_subtotal', 'yes' );
262262

263-
$tax_rate = array(
263+
$tax_rate = array(
264264
'tax_rate_country' => '',
265265
'tax_rate_state' => '',
266266
'tax_rate' => '24.0000',
@@ -273,7 +273,7 @@ public function test_cart_calculate_total_rounding_23917() {
273273
);
274274
WC_Tax::_insert_tax_rate( $tax_rate );
275275

276-
$tax_rate = array(
276+
$tax_rate = array(
277277
'tax_rate_country' => '',
278278
'tax_rate_state' => '',
279279
'tax_rate' => '24.0000',

tests/unit-tests/order/class-wc-tests-orders.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function test_order_calculate_total_rounding_24695() {
2020
update_option( 'woocommerce_calc_taxes', 'yes' );
2121
update_option( 'woocommerce_tax_round_at_subtotal', 'yes' );
2222

23-
$tax_rate = array(
23+
$tax_rate = array(
2424
'tax_rate_country' => '',
2525
'tax_rate_state' => '',
2626
'tax_rate' => '7.0000',

tests/unit-tests/util/class-wc-rate-limiter.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ public function tearDown() {
3131
*/
3232
public function test_rate_limit_limits() {
3333
$action_identifier = 'action_1';
34-
$user_1_id = 10;
35-
$user_2_id = 15;
34+
$user_1_id = 10;
35+
$user_2_id = 15;
3636

3737
$rate_limit_id_1 = $action_identifier . $user_1_id;
3838
$rate_limit_id_2 = $action_identifier . $user_2_id;

0 commit comments

Comments
 (0)