Make WordPress Core


Ignore:
Timestamp:
11/29/2022 03:49:49 PM (2 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Always use parentheses when instantiating an object.

Note: This will be enforced by WPCS 3.0.0.

Props jrf.
See #56791.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/rest-api/rest-post-statuses-controller.php

    r54090 r54891  
    126126    public function test_prepare_item() {
    127127        $obj      = get_post_status_object( 'publish' );
    128         $endpoint = new WP_REST_Post_Statuses_Controller;
    129         $request  = new WP_REST_Request;
     128        $endpoint = new WP_REST_Post_Statuses_Controller();
     129        $request  = new WP_REST_Request();
    130130        $request->set_param( 'context', 'edit' );
    131131        $data = $endpoint->prepare_item_for_response( $obj, $request );
     
    135135    public function test_prepare_item_limit_fields() {
    136136        $obj      = get_post_status_object( 'publish' );
    137         $request  = new WP_REST_Request;
    138         $endpoint = new WP_REST_Post_Statuses_Controller;
     137        $request  = new WP_REST_Request();
     138        $endpoint = new WP_REST_Post_Statuses_Controller();
    139139        $request->set_param( 'context', 'edit' );
    140140        $request->set_param( '_fields', 'id,name' );
Note: See TracChangeset for help on using the changeset viewer.