Make WordPress Core


Ignore:
Timestamp:
11/30/2017 11:09:33 PM (7 years ago)
Author:
pento
Message:

Code is Poetry.
WordPress' code just... wasn't.
This is now dealt with.

Props jrf, pento, netweb, GaryJ, jdgrimes, westonruter, Greg Sherwood from PHPCS, and everyone who's ever contributed to WPCS and PHPCS.
Fixes #41057.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/rest-api/class-wp-rest-request.php

    r41189 r42343  
    112112    public function __construct( $method = '', $route = '', $attributes = array() ) {
    113113        $this->params = array(
    114             'URL'   => array(),
    115             'GET'   => array(),
    116             'POST'  => array(),
    117             'FILES' => array(),
     114            'URL'      => array(),
     115            'GET'      => array(),
     116            'POST'     => array(),
     117            'FILES'    => array(),
    118118
    119119            // See parse_json_params.
    120             'JSON'  => null,
     120            'JSON'     => null,
    121121
    122122            'defaults' => array(),
     
    236236     */
    237237    public function set_header( $key, $value ) {
    238         $key = $this->canonicalize_header_name( $key );
     238        $key   = $this->canonicalize_header_name( $key );
    239239        $value = (array) $value;
    240240
     
    251251     */
    252252    public function add_header( $key, $value ) {
    253         $key = $this->canonicalize_header_name( $key );
     253        $key   = $this->canonicalize_header_name( $key );
    254254        $value = (array) $value;
    255255
     
    369369         *    An array of types to check, in order of priority.
    370370         *
    371          *    @param string $type The type to check.
     371         * @param string $type The type to check.
    372372         * }
    373373         * @param WP_REST_Request $this The request object.
     
    406406     */
    407407    public function set_param( $key, $value ) {
    408         $order = $this->get_parameter_order();
     408        $order                             = $this->get_parameter_order();
    409409        $this->params[ $order[0] ][ $key ] = $value;
    410410    }
     
    588588
    589589        // Enable lazy parsing.
    590         $this->parsed_json = false;
    591         $this->parsed_body = false;
     590        $this->parsed_json    = false;
     591        $this->parsed_body    = false;
    592592        $this->params['JSON'] = null;
    593593    }
     
    651651            );
    652652            if ( function_exists( 'json_last_error' ) ) {
    653                 $error_data['json_error_code'] = json_last_error();
     653                $error_data['json_error_code']    = json_last_error();
    654654                $error_data['json_error_message'] = json_last_error_msg();
    655655            }
     
    803803
    804804        if ( $invalid_params ) {
    805             return new WP_Error( 'rest_invalid_param', sprintf( __( 'Invalid parameter(s): %s' ), implode( ', ', array_keys( $invalid_params ) ) ), array( 'status' => 400, 'params' => $invalid_params ) );
     805            return new WP_Error(
     806                'rest_invalid_param', sprintf( __( 'Invalid parameter(s): %s' ), implode( ', ', array_keys( $invalid_params ) ) ), array(
     807                    'status' => 400,
     808                    'params' => $invalid_params,
     809                )
     810            );
    806811        }
    807812
     
    825830
    826831        $attributes = $this->get_attributes();
    827         $required = array();
     832        $required   = array();
    828833
    829834        // No arguments set, skip validation.
     
    841846
    842847        if ( ! empty( $required ) ) {
    843             return new WP_Error( 'rest_missing_callback_param', sprintf( __( 'Missing parameter(s): %s' ), implode( ', ', $required ) ), array( 'status' => 400, 'params' => $required ) );
     848            return new WP_Error(
     849                'rest_missing_callback_param', sprintf( __( 'Missing parameter(s): %s' ), implode( ', ', $required ) ), array(
     850                    'status' => 400,
     851                    'params' => $required,
     852                )
     853            );
    844854        }
    845855
     
    869879
    870880        if ( $invalid_params ) {
    871             return new WP_Error( 'rest_invalid_param', sprintf( __( 'Invalid parameter(s): %s' ), implode( ', ', array_keys( $invalid_params ) ) ), array( 'status' => 400, 'params' => $invalid_params ) );
     881            return new WP_Error(
     882                'rest_invalid_param', sprintf( __( 'Invalid parameter(s): %s' ), implode( ', ', array_keys( $invalid_params ) ) ), array(
     883                    'status' => 400,
     884                    'params' => $invalid_params,
     885                )
     886            );
    872887        }
    873888
     
    946961     */
    947962    public static function from_url( $url ) {
    948         $bits = parse_url( $url );
     963        $bits         = parse_url( $url );
    949964        $query_params = array();
    950965
     
    957972            // Pretty permalinks on, and URL is under the API root.
    958973            $api_url_part = substr( $url, strlen( untrailingslashit( $api_root ) ) );
    959             $route = parse_url( $api_url_part, PHP_URL_PATH );
     974            $route        = parse_url( $api_url_part, PHP_URL_PATH );
    960975        } elseif ( ! empty( $query_params['rest_route'] ) ) {
    961976            // ?rest_route=... set directly
Note: See TracChangeset for help on using the changeset viewer.