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

    r42382 r43571  
    6767        $post_id = self::factory()->post->create();
    6868
    69         $this->expectOutputString( sprintf(
    70             'Categories: <a href="%s">Uncategorized</a>.',
    71             get_category_link( 1 )
    72         ) );
     69        $this->expectOutputString(
     70            sprintf(
     71                'Categories: <a href="%s">Uncategorized</a>.',
     72                get_category_link( 1 )
     73            )
     74        );
    7375        the_taxonomies( array( 'post' => $post_id ) );
    7476    }
     
    8183
    8284        $output = get_echo(
    83             'the_taxonomies', array(
     85            'the_taxonomies',
     86            array(
    8487                array(
    8588                    'post'          => $post_id,
     
    9194
    9295        $output = get_echo(
    93             'the_taxonomies', array(
     96            'the_taxonomies',
     97            array(
    9498                array(
    9599                    'post'          => $post_id,
     
    189193    public function test_register_taxonomy_show_in_quick_edit_should_default_to_value_of_show_ui() {
    190194        register_taxonomy(
    191             'wptests_tax_1', 'post', array(
     195            'wptests_tax_1',
     196            'post',
     197            array(
    192198                'show_ui' => true,
    193199            )
     
    195201
    196202        register_taxonomy(
    197             'wptests_tax_2', 'post', array(
     203            'wptests_tax_2',
     204            'post',
     205            array(
    198206                'show_ui' => false,
    199207            )
     
    450458    public function test_get_ancestors_taxonomy() {
    451459        register_taxonomy(
    452             'wptests_tax', 'post', array(
     460            'wptests_tax',
     461            'post',
     462            array(
    453463                'hierarchical' => true,
    454464            )
     
    495505    public function test_get_ancestors_post_type() {
    496506        register_post_type(
    497             'wptests_pt', array(
     507            'wptests_pt',
     508            array(
    498509                'hierarchical' => true,
    499510            )
     
    532543    public function test_get_ancestors_taxonomy_post_type_conflict_resource_type_taxonomy() {
    533544        register_post_type(
    534             'wptests_conflict', array(
     545            'wptests_conflict',
     546            array(
    535547                'hierarchical' => true,
    536548            )
     
    549561
    550562        register_taxonomy(
    551             'wptests_conflict', 'post', array(
     563            'wptests_conflict',
     564            'post',
     565            array(
    552566                'hierarchical' => true,
    553567            )
     
    576590    public function test_nonpublicly_queryable_taxonomy_should_not_be_queryable_using_taxname_query_var() {
    577591        register_taxonomy(
    578             'wptests_tax', 'post', array(
     592            'wptests_tax',
     593            'post',
     594            array(
    579595                'publicly_queryable' => false,
    580596            )
     
    602618
    603619        register_taxonomy(
    604             'wptests_tax', 'post', array(
     620            'wptests_tax',
     621            'post',
     622            array(
    605623                'publicly_queryable' => false,
    606624            )
     
    639657    public function test_nonpublicly_queryable_taxonomy_should_not_be_queryable_using_taxonomy_and_term_vars() {
    640658        register_taxonomy(
    641             'wptests_tax', 'post', array(
     659            'wptests_tax',
     660            'post',
     661            array(
    642662                'publicly_queryable' => false,
    643663            )
     
    663683    public function test_public_taxonomy_should_be_publicly_queryable() {
    664684        register_taxonomy(
    665             'wptests_tax', 'post', array(
     685            'wptests_tax',
     686            'post',
     687            array(
    666688                'public' => true,
    667689            )
     
    689711    public function test_private_taxonomy_should_not_be_publicly_queryable() {
    690712        register_taxonomy(
    691             'wptests_tax', 'post', array(
     713            'wptests_tax',
     714            'post',
     715            array(
    692716                'public' => false,
    693717            )
     
    715739    public function test_private_taxonomy_should_be_overridden_by_publicly_queryable() {
    716740        register_taxonomy(
    717             'wptests_tax', 'post', array(
     741            'wptests_tax',
     742            'post',
     743            array(
    718744                'public'             => false,
    719745                'publicly_queryable' => true,
     
    742768    public function test_query_var_should_be_forced_to_false_for_non_public_taxonomy() {
    743769        register_taxonomy(
    744             'wptests_tax', 'post', array(
     770            'wptests_tax',
     771            'post',
     772            array(
    745773                'public'    => false,
    746774                'query_var' => true,
     
    798826
    799827        register_taxonomy(
    800             'foo', 'post', array(
     828            'foo',
     829            'post',
     830            array(
    801831                'query_var' => 'bar',
    802832                'rewrite'   => true,
     
    891921
    892922        register_taxonomy(
    893             $taxonomy_name, array( 'post' ), array(
     923            $taxonomy_name,
     924            array( 'post' ),
     925            array(
    894926                'hierarchical' => false,
    895927                'meta_box_cb'  => 'post_categories_meta_box',
Note: See TracChangeset for help on using the changeset viewer.