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/rest-api/endpoints/class-wp-rest-users-controller.php

    r43137 r43571  
    4747
    4848        register_rest_route(
    49             $this->namespace, '/' . $this->rest_base, array(
     49            $this->namespace,
     50            '/' . $this->rest_base,
     51            array(
    5052                array(
    5153                    'methods'             => WP_REST_Server::READABLE,
     
    6567
    6668        register_rest_route(
    67             $this->namespace, '/' . $this->rest_base . '/(?P<id>[\d]+)', array(
     69            $this->namespace,
     70            '/' . $this->rest_base . '/(?P<id>[\d]+)',
     71            array(
    6872                'args'   => array(
    6973                    'id' => array(
     
    109113
    110114        register_rest_route(
    111             $this->namespace, '/' . $this->rest_base . '/me', array(
     115            $this->namespace,
     116            '/' . $this->rest_base . '/me',
     117            array(
    112118                array(
    113119                    'methods'  => WP_REST_Server::READABLE,
     
    195201        if ( 'authors' === $request['who'] ) {
    196202            $can_view = false;
    197             $types = get_post_types( array( 'show_in_rest' => true ), 'objects' );
     203            $types    = get_post_types( array( 'show_in_rest' => true ), 'objects' );
    198204            foreach ( $types as $type ) {
    199205                if ( post_type_supports( $type->name, 'author' )
Note: See TracChangeset for help on using the changeset viewer.