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/class-walker-comment.php

    r42343 r43571  
    237237    protected function ping( $comment, $depth, $args ) {
    238238        $tag = ( 'div' == $args['style'] ) ? 'div' : 'li';
    239 ?>
     239        ?>
    240240        <<?php echo $tag; ?> id="comment-<?php comment_ID(); ?>" <?php comment_class( '', $comment ); ?>>
    241241            <div class="comment-body">
    242242                <?php _e( 'Pingback:' ); ?> <?php comment_author_link( $comment ); ?> <?php edit_comment_link( __( 'Edit' ), '<span class="edit-link">', '</span>' ); ?>
    243243            </div>
    244 <?php
     244        <?php
    245245    }
    246246
     
    264264            $add_below = 'div-comment';
    265265        }
    266 ?>
     266        ?>
    267267        <<?php echo $tag; ?> <?php comment_class( $this->has_children ? 'parent' : '', $comment ); ?> id="comment-<?php comment_ID(); ?>">
    268268        <?php if ( 'div' != $args['style'] ) : ?>
     
    273273            if ( 0 != $args['avatar_size'] ) {
    274274                echo get_avatar( $comment, $args['avatar_size'] );}
    275 ?>
     275            ?>
    276276            <?php
    277277                /* translators: %s: comment author link */
     
    291291                /* translators: 1: comment date, 2: comment time */
    292292                printf( __( '%1$s at %2$s' ), get_comment_date( '', $comment ), get_comment_time() );
    293                 ?>
     293            ?>
    294294                </a>
    295295                <?php
    296296                edit_comment_link( __( '(Edit)' ), '&nbsp;&nbsp;', '' );
    297             ?>
     297                ?>
    298298        </div>
    299299
    300300        <?php
    301301        comment_text(
    302             $comment, array_merge(
    303                 $args, array(
     302            $comment,
     303            array_merge(
     304                $args,
     305                array(
    304306                    'add_below' => $add_below,
    305307                    'depth'     => $depth,
     
    308310            )
    309311        );
    310 ?>
     312        ?>
    311313
    312314        <?php
    313315        comment_reply_link(
    314316            array_merge(
    315                 $args, array(
     317                $args,
     318                array(
    316319                    'add_below' => $add_below,
    317320                    'depth'     => $depth,
     
    327330        </div>
    328331        <?php endif; ?>
    329 <?php
     332        <?php
    330333    }
    331334
     
    343346    protected function html5_comment( $comment, $depth, $args ) {
    344347        $tag = ( 'div' === $args['style'] ) ? 'div' : 'li';
    345 ?>
     348        ?>
    346349        <<?php echo $tag; ?> id="comment-<?php comment_ID(); ?>" <?php comment_class( $this->has_children ? 'parent' : '', $comment ); ?>>
    347350            <article id="div-comment-<?php comment_ID(); ?>" class="comment-body">
     
    351354                        if ( 0 != $args['avatar_size'] ) {
    352355                            echo get_avatar( $comment, $args['avatar_size'] );}
    353 ?>
     356                        ?>
    354357                        <?php
    355358                            /* translators: %s: comment author link */
     
    385388                comment_reply_link(
    386389                    array_merge(
    387                         $args, array(
     390                        $args,
     391                        array(
    388392                            'add_below' => 'div-comment',
    389393                            'depth'     => $depth,
     
    396400                ?>
    397401            </article><!-- .comment-body -->
    398 <?php
     402        <?php
    399403    }
    400404}
Note: See TracChangeset for help on using the changeset viewer.