Make WordPress Core


Ignore:
Timestamp:
08/17/2018 01:50:26 AM (6 years ago)
Author:
pento
Message:

Coding Standards: Upgrade WPCS to 1.0.0

WPCS 1.0.0 includes a bunch of new auto-fixers, which drops the number of coding standards issues across WordPress significantly. Prior to running the auto-fixers, there were 15,312 issues detected. With this commit, we now drop to 4,769 issues.

This change includes three notable additions:

  • Multiline function calls must now put each parameter on a new line.
  • Auto-formatting files is now part of the grunt precommit script.
  • Auto-fixable coding standards issues will now cause Travis failures.

Fixes #44600.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-customize-widgets.php

    r43561 r43571  
    402402            $setting_id   = 'old_sidebars_widgets_data';
    403403            $setting_args = $this->get_setting_args(
    404                 $setting_id, array(
     404                $setting_id,
     405                array(
    405406                    'type'  => 'global_variable',
    406407                    'dirty' => true,
     
    411412
    412413        $this->manager->add_panel(
    413             'widgets', array(
     414            'widgets',
     415            array(
    414416                'type'                     => 'widgets',
    415417                'title'                    => __( 'Widgets' ),
     
    469471
    470472                    $control           = new WP_Widget_Area_Customize_Control(
    471                         $this->manager, $setting_id, array(
     473                        $this->manager,
     474                        $setting_id,
     475                        array(
    472476                            'section'    => $section_id,
    473477                            'sidebar_id' => $sidebar_id,
     
    494498
    495499                $control = new WP_Widget_Form_Customize_Control(
    496                     $this->manager, $setting_id, array(
     500                    $this->manager,
     501                    $setting_id,
     502                    array(
    497503                        'label'          => $registered_widget['name'],
    498504                        'section'        => $section_id,
     
    734740                    ),
    735741                    number_format_i18n( $non_rendered_count )
    736                 ), ENT_QUOTES, get_bloginfo( 'charset' )
     742                ),
     743                ENT_QUOTES,
     744                get_bloginfo( 'charset' )
    737745            );
    738746        }
     
    742750                sprintf(
    743751                    __( 'Your theme has 1 widget area, but this particular page doesn’t display it.' )
    744                 ), ENT_QUOTES, get_bloginfo( 'charset' )
     752                ),
     753                ENT_QUOTES,
     754                get_bloginfo( 'charset' )
    745755            );
    746756        } else {
     
    754764                    ),
    755765                    number_format_i18n( $registered_sidebar_count )
    756                 ), ENT_QUOTES, get_bloginfo( 'charset' )
     766                ),
     767                ENT_QUOTES,
     768                get_bloginfo( 'charset' )
    757769            );
    758770        }
     
    9911003            // The properties here are mapped to the Backbone Widget model.
    9921004            $available_widget = array_merge(
    993                 $available_widget, array(
     1005                $available_widget,
     1006                array(
    9941007                    'temp_id'      => isset( $args['_temp_id'] ) ? $args['_temp_id'] : null,
    9951008                    'is_multi'     => $is_multi_widget,
     
    17041717                        'data-customize-partial-widget-id',
    17051718                        'data-customize-partial-options',
    1706                     ), true
     1719                    ),
     1720                    true
    17071721                )
    17081722            );
Note: See TracChangeset for help on using the changeset viewer.