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/tests/phpunit/tests/rest-api/rest-settings-controller.php

    r42843 r43571  
    2222        );
    2323
    24         self::$author        = $factory->user->create(
     24        self::$author = $factory->user->create(
    2525            array(
    2626                'role' => 'author',
     
    119119
    120120        register_setting(
    121             'somegroup', 'mycustomsetting', array(
     121            'somegroup',
     122            'mycustomsetting',
     123            array(
    122124                'show_in_rest' => array(
    123125                    'name'   => 'mycustomsettinginrest',
     
    153155
    154156        register_setting(
    155             'somegroup', 'mycustomsetting', array(
     157            'somegroup',
     158            'mycustomsetting',
     159            array(
    156160                'show_in_rest' => array(
    157161                    'schema' => array(
     
    201205
    202206        register_setting(
    203             'somegroup', 'mycustomsetting', array(
     207            'somegroup',
     208            'mycustomsetting',
     209            array(
    204210                'show_in_rest' => array(
    205211                    'schema' => array(
     
    236242        // Invalid value
    237243        update_option(
    238             'mycustomsetting', array(
     244            'mycustomsetting',
     245            array(
    239246                'a' => 1,
    240247                'b' => 2,
     
    263270
    264271        register_setting(
    265             'somegroup', 'mycustomsetting1', array(
     272            'somegroup',
     273            'mycustomsetting1',
     274            array(
    266275                'show_in_rest' => array(
    267276                    'name' => 'mycustomsettinginrest1',
     
    272281
    273282        register_setting(
    274             'somegroup', 'mycustomsetting2', array(
     283            'somegroup',
     284            'mycustomsetting2',
     285            array(
    275286                'show_in_rest' => array(
    276287                    'name' => 'mycustomsettinginrest2',
     
    303314
    304315        register_setting(
    305             'somegroup', 'mycustomsetting', array(
     316            'somegroup',
     317            'mycustomsetting',
     318            array(
    306319                'show_in_rest' => array(
    307320                    'name'   => 'mycustomsettinginrest',
     
    327340
    328341        register_setting(
    329             'somegroup', 'mycustomsetting', array(
     342            'somegroup',
     343            'mycustomsetting',
     344            array(
    330345                'show_in_rest' => array(
    331346                    'name'   => 'mycustomsettinginrest',
     
    375390    public function test_update_item_with_array() {
    376391        register_setting(
    377             'somegroup', 'mycustomsetting', array(
     392            'somegroup',
     393            'mycustomsetting',
     394            array(
    378395                'show_in_rest' => array(
    379396                    'schema' => array(
     
    419436    public function test_update_item_with_nested_object() {
    420437        register_setting(
    421             'somegroup', 'mycustomsetting', array(
     438            'somegroup',
     439            'mycustomsetting',
     440            array(
    422441                'show_in_rest' => array(
    423442                    'schema' => array(
     
    446465        $request = new WP_REST_Request( 'PUT', '/wp/v2/settings' );
    447466        $request->set_param(
    448             'mycustomsetting', array(
     467            'mycustomsetting',
     468            array(
    449469                'a' => array(
    450470                    'b' => 1,
     
    459479    public function test_update_item_with_object() {
    460480        register_setting(
    461             'somegroup', 'mycustomsetting', array(
     481            'somegroup',
     482            'mycustomsetting',
     483            array(
    462484                'show_in_rest' => array(
    463485                    'schema' => array(
     
    497519        $request = new WP_REST_Request( 'PUT', '/wp/v2/settings' );
    498520        $request->set_param(
    499             'mycustomsetting', array(
     521            'mycustomsetting',
     522            array(
    500523                'a' => 1,
    501524                'b' => 2,
     
    599622
    600623        register_setting(
    601             'somegroup', 'mycustomsetting', array(
     624            'somegroup',
     625            'mycustomsetting',
     626            array(
    602627                'show_in_rest' => true,
    603628                'type'         => 'string',
Note: See TracChangeset for help on using the changeset viewer.