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/term/query.php

    r43313 r43571  
    332332
    333333        $query = new WP_Term_Query();
    334         $args = array(
     334        $args  = array(
    335335            'taxonomy'   => 'wptests_tax_1',
    336336            'object_ids' => $posts,
     
    463463    public function test_get_the_terms_should_respect_taxonomy_orderby() {
    464464        register_taxonomy(
    465             'wptests_tax', 'post', array(
     465            'wptests_tax',
     466            'post',
     467            array(
    466468                'sort' => true,
    467469                'args' => array(
     
    471473        );
    472474        $term_ids = self::factory()->term->create_many(
    473             2, array(
     475            2,
     476            array(
    474477                'taxonomy' => 'wptests_tax',
    475478            )
     
    490493    public function test_wp_get_object_terms_should_respect_taxonomy_orderby() {
    491494        register_taxonomy(
    492             'wptests_tax', 'post', array(
     495            'wptests_tax',
     496            'post',
     497            array(
    493498                'sort' => true,
    494499                'args' => array(
     
    498503        );
    499504        $term_ids = self::factory()->term->create_many(
    500             2, array(
     505            2,
     506            array(
    501507                'taxonomy' => 'wptests_tax',
    502508            )
     
    542548
    543549        $expected = wp_get_post_terms(
    544             $p, 'wptests_tax', array(
     550            $p,
     551            'wptests_tax',
     552            array(
    545553                'fields' => 'ids',
    546554            )
     
    549557        $found1 = array_keys(
    550558            wp_get_object_terms(
    551                 $p, 'wptests_tax', array(
     559                $p,
     560                'wptests_tax',
     561                array(
    552562                    'fields' => 'id=>parent',
    553563                )
     
    557567        $found2 = array_keys(
    558568            wp_get_object_terms(
    559                 $p, 'wptests_tax', array(
     569                $p,
     570                'wptests_tax',
     571                array(
    560572                    'fields' => 'id=>slug',
    561573                )
     
    565577        $found3 = array_keys(
    566578            wp_get_object_terms(
    567                 $p, 'wptests_tax', array(
     579                $p,
     580                'wptests_tax',
     581                array(
    568582                    'fields' => 'id=>name',
    569583                )
     
    657671        register_taxonomy( 'wptests_tax', 'post' );
    658672
    659         $terms = self::factory()->term->create_many( 3, array(
    660             'taxonomy' => 'wptests_tax',
    661         ) );
     673        $terms = self::factory()->term->create_many(
     674            3,
     675            array(
     676                'taxonomy' => 'wptests_tax',
     677            )
     678        );
    662679
    663680        $this->term_id = $terms[1];
    664681
    665682        add_filter( 'get_term', array( $this, 'filter_term_to_null' ) );
    666         $found = get_terms( array(
    667             'taxonomy'   => 'wptests_tax',
    668             'hide_empty' => false,
    669         ) );
     683        $found = get_terms(
     684            array(
     685                'taxonomy'   => 'wptests_tax',
     686                'hide_empty' => false,
     687            )
     688        );
    670689        remove_filter( 'get_term', array( $this, 'filter_term_to_null' ) );
    671690
     
    689708        register_taxonomy( 'wptests_tax', 'post' );
    690709
    691         $terms = self::factory()->term->create_many( 3, array(
    692             'taxonomy' => 'wptests_tax',
    693         ) );
     710        $terms = self::factory()->term->create_many(
     711            3,
     712            array(
     713                'taxonomy' => 'wptests_tax',
     714            )
     715        );
    694716
    695717        $this->term_id = $terms[1];
    696718
    697719        add_filter( 'get_term', array( $this, 'filter_term_to_wp_error' ) );
    698         $found = get_terms( array(
    699             'taxonomy'   => 'wptests_tax',
    700             'hide_empty' => false,
    701         ) );
     720        $found = get_terms(
     721            array(
     722                'taxonomy'   => 'wptests_tax',
     723                'hide_empty' => false,
     724            )
     725        );
    702726        remove_filter( 'get_term', array( $this, 'filter_term_to_wp_error' ) );
    703727
Note: See TracChangeset for help on using the changeset viewer.