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/media.php

    r54889 r54891  
    362362     */
    363363    public function test_autoembed( $content, $result = null ) {
    364         $wp_embed = new Test_Autoembed;
     364        $wp_embed = new Test_Autoembed();
    365365
    366366        $this->assertSame( $wp_embed->autoembed( $content ), $result ? $result : $content );
Note: See TracChangeset for help on using the changeset viewer.