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/query/generatePostdata.php

    r48937 r54891  
    2020     */
    2121    public function test_setup_by_fake_post() {
    22         $fake     = new stdClass;
     22        $fake     = new stdClass();
    2323        $fake->ID = 98765;
    2424        $data     = generate_postdata( $fake->ID );
Note: See TracChangeset for help on using the changeset viewer.