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

    r42343 r43571  
    8888
    8989        $this->assertEquals(
    90             "{$wpdb->prefix}dbdelta_create_test", $wpdb->get_var(
     90            "{$wpdb->prefix}dbdelta_create_test",
     91            $wpdb->get_var(
    9192                $wpdb->prepare(
    92                     'SHOW TABLES LIKE %s', $wpdb->esc_like( "{$wpdb->prefix}dbdelta_create_test" )
     93                    'SHOW TABLES LIKE %s',
     94                    $wpdb->esc_like( "{$wpdb->prefix}dbdelta_create_test" )
    9395                )
    9496            )
     
    144146                "{$wpdb->prefix}dbdelta_test.id"
    145147                    => "Changed type of {$wpdb->prefix}dbdelta_test.id from bigint(20) to int(11)",
    146             ), $updates
     148            ),
     149            $updates
    147150        );
    148151    }
     
    172175                "{$wpdb->prefix}dbdelta_test.extra_col"
    173176                    => "Added column {$wpdb->prefix}dbdelta_test.extra_col",
    174             ), $updates
     177            ),
     178            $updates
    175179        );
    176180
     
    223227                KEY compound_key (id,column_1($this->max_index_length))
    224228            )
    225             ", false // Don't execute.
     229            ",
     230            false // Don't execute.
    226231        );
    227232
     
    230235                "{$wpdb->prefix}dbdelta_test.extra_col"
    231236                    => "Added column {$wpdb->prefix}dbdelta_test.extra_col",
    232             ), $updates
     237            ),
     238            $updates
    233239        );
    234240
     
    247253
    248254        $this->assertEquals(
    249             array(), $insert
     255            array(),
     256            $insert
    250257        );
    251258
     
    272279                FULLTEXT KEY fulltext_key (column_1)
    273280            )
    274             ", false
     281            ",
     282            false
    275283        );
    276284
     
    329337
    330338        $this->assertCount(
    331             1, wp_list_filter(
    332                 $table_indices, array(
     339            1,
     340            wp_list_filter(
     341                $table_indices,
     342                array(
    333343                    'Key_name'    => 'PRIMARY',
    334344                    'Column_name' => $column,
    335                 ), 'AND'
     345                ),
     346                'AND'
    336347            )
    337348        );
     
    408419                FULLTEXT KEY fulltext_key (column_1)
    409420            ) ENGINE=MyISAM
    410             ", false
     421            ",
     422            false
    411423        );
    412424
     
    432444                FULLTEXT KEY fulltext_key (column_1)
    433445            ) ENGINE=MyISAM
    434             ", false
     446            ",
     447            false
    435448        );
    436449
     
    456469                FULLTEXT KEY fulltext_key (column_1)
    457470            ) ENGINE=MyISAM
    458             ", false
     471            ",
     472            false
    459473        );
    460474
     
    463477                "{$wpdb->prefix}dbdelta_test.column_2"
    464478                    => "Changed type of {$wpdb->prefix}dbdelta_test.column_2 from text to bigtext",
    465             ), $result
     479            ),
     480            $result
    466481        );
    467482    }
     
    485500                FULLTEXT KEY fulltext_key (column_1)
    486501            ) ENGINE=MyISAM
    487             ", false
     502            ",
     503            false
    488504        );
    489505
     
    492508                "{$wpdb->prefix}dbdelta_test.column_3"
    493509                    => "Changed type of {$wpdb->prefix}dbdelta_test.column_3 from blob to mediumblob",
    494             ), $result
     510            ),
     511            $result
    495512        );
    496513    }
     
    564581                "{$wpdb->prefix}spatial_index_test.spatial_value2" => "Added column {$wpdb->prefix}spatial_index_test.spatial_value2",
    565582                "Added index {$wpdb->prefix}spatial_index_test SPATIAL KEY `spatial_key2` (`spatial_value2`)",
    566             ), $updates
     583            ),
     584            $updates
    567585        );
    568586
     
    853871                FULLTEXT KEY FULLtext_kEY (column_1)
    854872            ) ENGINE=MyISAM
    855             ", false
     873            ",
     874            false
    856875        );
    857876
     
    877896                FULLTEXT KEY fulltext_key (column_1)
    878897            ) ENGINE=MyISAM
    879             ", false
     898            ",
     899            false
    880900        );
    881901
     
    908928            array(
    909929                "Added index {$wpdb->prefix}dbdelta_test KEY `changing_key_length` (`column_1`(20))",
    910             ), $updates
     930            ),
     931            $updates
    911932        );
    912933
Note: See TracChangeset for help on using the changeset viewer.