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

    r43570 r43571  
    5959
    6060    register_taxonomy(
    61         'category', 'post', array(
     61        'category',
     62        'post',
     63        array(
    6264            'hierarchical'          => true,
    6365            'query_var'             => 'category_name',
     
    8082
    8183    register_taxonomy(
    82         'post_tag', 'post', array(
     84        'post_tag',
     85        'post',
     86        array(
    8387            'hierarchical'          => false,
    8488            'query_var'             => 'tag',
     
    101105
    102106    register_taxonomy(
    103         'nav_menu', 'nav_menu_item', array(
     107        'nav_menu',
     108        'nav_menu_item',
     109        array(
    104110            'public'            => false,
    105111            'hierarchical'      => false,
     
    117123
    118124    register_taxonomy(
    119         'link_category', 'link', array(
     125        'link_category',
     126        'link',
     127        array(
    120128            'hierarchical' => false,
    121129            'labels'       => array(
     
    149157
    150158    register_taxonomy(
    151         'post_format', 'post', array(
     159        'post_format',
     160        'post',
     161        array(
    152162            'public'            => true,
    153163            'hierarchical'      => false,
     
    18681878    foreach ( $object_ids as $object_id ) {
    18691879        $terms = wp_get_object_terms(
    1870             $object_id, $taxonomy, array(
     1880            $object_id,
     1881            $taxonomy,
     1882            array(
    18711883                'fields'  => 'ids',
    18721884                'orderby' => 'none',
     
    22012213
    22022214            wp_update_term(
    2203                 $alias->term_id, $taxonomy, array(
     2215                $alias->term_id,
     2216                $taxonomy,
     2217                array(
    22042218                    'term_group' => $term_group,
    22052219                )
     
    22132227     */
    22142228    $name_matches = get_terms(
    2215         $taxonomy, array(
     2229        $taxonomy,
     2230        array(
    22162231            'name'                   => $name,
    22172232            'hide_empty'             => false,
     
    22402255            if ( is_taxonomy_hierarchical( $taxonomy ) ) {
    22412256                $siblings = get_terms(
    2242                     $taxonomy, array(
     2257                    $taxonomy,
     2258                    array(
    22432259                        'get'                    => 'all',
    22442260                        'parent'                 => $parent,
     
    24512467    if ( ! $append ) {
    24522468        $old_tt_ids = wp_get_object_terms(
    2453             $object_id, $taxonomy, array(
     2469            $object_id,
     2470            $taxonomy,
     2471            array(
    24542472                'fields'                 => 'tt_ids',
    24552473                'orderby'                => 'none',
     
    25002518        do_action( 'add_term_relationship', $object_id, $tt_id, $taxonomy );
    25012519        $wpdb->insert(
    2502             $wpdb->term_relationships, array(
     2520            $wpdb->term_relationships,
     2521            array(
    25032522                'object_id'        => $object_id,
    25042523                'term_taxonomy_id' => $tt_id,
     
    28912910
    28922911            wp_update_term(
    2893                 $alias->term_id, $taxonomy, array(
     2912                $alias->term_id,
     2913                $taxonomy,
     2914                array(
    28942915                    'term_group' => $term_group,
    28952916                )
     
    34033424
    34043425    $terms = wp_get_object_terms(
    3405         $ids, $taxonomies, array(
     3426        $ids,
     3427        $taxonomies,
     3428        array(
    34063429            'fields'                 => 'all_with_object_id',
    34073430            'orderby'                => 'name',
     
    34773500    $children = array();
    34783501    $terms    = get_terms(
    3479         $taxonomy, array(
     3502        $taxonomy,
     3503        array(
    34803504            'get'                    => 'all',
    34813505            'orderby'                => 'id',
     
    43274351
    43284352    $args = wp_parse_args(
    4329         $args, array(
     4353        $args,
     4354        array(
    43304355            /* translators: %s: taxonomy label, %l: list of terms formatted as per $term_template */
    43314356            'template'      => __( '%s: %l.' ),
Note: See TracChangeset for help on using the changeset viewer.