Make WordPress Core


Ignore:
Timestamp:
11/29/2022 03:49:49 PM (22 months 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/src/wp-includes/admin-bar.php

    r53893 r54891  
    4242    $admin_bar_class = apply_filters( 'wp_admin_bar_class', 'WP_Admin_Bar' );
    4343    if ( class_exists( $admin_bar_class ) ) {
    44         $wp_admin_bar = new $admin_bar_class;
     44        $wp_admin_bar = new $admin_bar_class();
    4545    } else {
    4646        return false;
Note: See TracChangeset for help on using the changeset viewer.