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/wpGetObjectTerms.php

    r42343 r43571  
    2525        // make sure they're correct
    2626        $terms = wp_get_object_terms(
    27             $post_id, $this->taxonomy, array(
     27            $post_id,
     28            $this->taxonomy,
     29            array(
    2830                'fields'  => 'slugs',
    2931                'orderby' => 'term_id',
     
    4951
    5052        $terms2 = wp_get_object_terms(
    51             array( $post_id1, $post_id2 ), 'category', array(
     53            array( $post_id1, $post_id2 ),
     54            'category',
     55            array(
    5256                'fields' => 'all_with_object_id',
    5357            )
     
    138142
    139143        $found = wp_get_object_terms(
    140             $p, $this->taxonomy, array(
     144            $p,
     145            $this->taxonomy,
     146            array(
    141147                'orderby' => 'name',
    142148                'fields'  => 'ids',
     
    174180
    175181        $found = wp_get_object_terms(
    176             $posts[0], $this->taxonomy, array(
     182            $posts[0],
     183            $this->taxonomy,
     184            array(
    177185                'orderby' => 'count',
    178186                'fields'  => 'ids',
     
    208216
    209217        $found = wp_get_object_terms(
    210             $p, $this->taxonomy, array(
     218            $p,
     219            $this->taxonomy,
     220            array(
    211221                'orderby' => 'slug',
    212222                'fields'  => 'ids',
     
    245255
    246256        $found = wp_get_object_terms(
    247             $p, $this->taxonomy, array(
     257            $p,
     258            $this->taxonomy,
     259            array(
    248260                'orderby' => 'term_group',
    249261                'fields'  => 'ids',
     
    282294        global $wpdb;
    283295        $wpdb->update(
    284             $wpdb->term_relationships, array( 'term_order' => 1 ), array(
     296            $wpdb->term_relationships,
     297            array( 'term_order' => 1 ),
     298            array(
    285299                'term_taxonomy_id' => $term_1->term_taxonomy_id,
    286300                'object_id'        => $p,
     
    288302        );
    289303        $wpdb->update(
    290             $wpdb->term_relationships, array( 'term_order' => 3 ), array(
     304            $wpdb->term_relationships,
     305            array( 'term_order' => 3 ),
     306            array(
    291307                'term_taxonomy_id' => $term_2->term_taxonomy_id,
    292308                'object_id'        => $p,
     
    294310        );
    295311        $wpdb->update(
    296             $wpdb->term_relationships, array( 'term_order' => 2 ), array(
     312            $wpdb->term_relationships,
     313            array( 'term_order' => 2 ),
     314            array(
    297315                'term_taxonomy_id' => $term_3->term_taxonomy_id,
    298316                'object_id'        => $p,
     
    301319
    302320        $found = wp_get_object_terms(
    303             $p, $this->taxonomy, array(
     321            $p,
     322            $this->taxonomy,
     323            array(
    304324                'orderby' => 'term_order',
    305325                'fields'  => 'ids',
     
    344364
    345365        $found = wp_get_object_terms(
    346             $p, $this->taxonomy, array(
     366            $p,
     367            $this->taxonomy,
     368            array(
    347369                'orderby' => 'parent',
    348370                'fields'  => 'ids',
     
    383405
    384406        $found = wp_get_object_terms(
    385             $p, array( $this->taxonomy, 'wptests_tax_2', 'wptests_tax_3' ), array(
     407            $p,
     408            array( $this->taxonomy, 'wptests_tax_2', 'wptests_tax_3' ),
     409            array(
    386410                'orderby' => 'taxonomy',
    387411                'fields'  => 'ids',
     
    427451
    428452        $found = wp_get_object_terms(
    429             $p, $this->taxonomy, array(
     453            $p,
     454            $this->taxonomy,
     455            array(
    430456                'orderby' => 'term_taxonomy_id',
    431457                'fields'  => 'ids',
     
    461487
    462488        $found = wp_get_object_terms(
    463             $p, $this->taxonomy, array(
     489            $p,
     490            $this->taxonomy,
     491            array(
    464492                'orderby' => 'name',
    465493                'order'   => 'DESC',
     
    476504    public function test_parent() {
    477505        register_taxonomy(
    478             'wptests_tax2', 'post', array(
     506            'wptests_tax2',
     507            'post',
     508            array(
    479509                'hierarchical' => true,
    480510            )
     
    509539
    510540        $found = wp_get_object_terms(
    511             $p, 'wptests_tax2', array(
     541            $p,
     542            'wptests_tax2',
     543            array(
    512544                'parent' => $t1,
    513545                'fields' => 'ids',
     
    550582
    551583        $found = wp_get_object_terms(
    552             $p, $this->taxonomy, array(
     584            $p,
     585            $this->taxonomy,
     586            array(
    553587                'parent' => 0,
    554588                'fields' => 'ids',
     
    601635
    602636        $found = wp_get_object_terms(
    603             $p, 'wptests_tax', array(
     637            $p,
     638            'wptests_tax',
     639            array(
    604640                'update_term_meta_cache' => false,
    605641            )
     
    631667
    632668        $found = wp_get_object_terms(
    633             $p, 'wptests_tax', array(
     669            $p,
     670            'wptests_tax',
     671            array(
    634672                'update_term_meta_cache' => true,
    635673                'fields'                 => 'all_with_object_id',
     
    662700
    663701        $found = wp_get_object_terms(
    664             $p, 'wptests_tax', array(
     702            $p,
     703            'wptests_tax',
     704            array(
    665705                'update_term_meta_cache' => true,
    666706                'fields'                 => 'ids',
     
    692732
    693733        $found = wp_get_object_terms(
    694             $p, 'wptests_tax', array(
     734            $p,
     735            'wptests_tax',
     736            array(
    695737                'meta_query' => array(
    696738                    array(
     
    715757
    716758        $found = wp_get_object_terms(
    717             $p, 'wptests_tax', array(
     759            $p,
     760            'wptests_tax',
     761            array(
    718762                'fields' => 'all',
    719763            )
     
    736780
    737781        $found = wp_get_object_terms(
    738             $p, 'wptests_tax', array(
     782            $p,
     783            'wptests_tax',
     784            array(
    739785                'fields' => 'all_with_object_id',
    740786            )
     
    759805
    760806        $found = wp_get_object_terms(
    761             $p, 'wptests_tax', array(
     807            $p,
     808            'wptests_tax',
     809            array(
    762810                'fields' => 'all_with_object_id',
    763811            )
     
    779827
    780828        $found = wp_get_object_terms(
    781             $p, 'wptests_tax', array(
     829            $p,
     830            'wptests_tax',
     831            array(
    782832                'fields' => 'all_with_object_id',
    783833            )
     
    807857
    808858        $found = wp_get_object_terms(
    809             $p, array(
     859            $p,
     860            array(
    810861                'wptests_tax1',
    811862                'wptests_tax2',
    812             ), array(
     863            ),
     864            array(
    813865                'fields' => 'all_with_object_id',
    814866            )
     
    834886
    835887        $found = wp_get_object_terms(
    836             $posts, 'wptests_tax', array(
     888            $posts,
     889            'wptests_tax',
     890            array(
    837891                'fields' => 'all_with_object_id',
    838892            )
     
    938992
    939993        $actual = wp_get_object_terms(
    940             $post_id, array( $taxonomy1, $taxonomy2 ), array(
     994            $post_id,
     995            array( $taxonomy1, $taxonomy2 ),
     996            array(
    941997                'orderby' => 'term_id',
    942998                'fields'  => 'ids',
Note: See TracChangeset for help on using the changeset viewer.