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/src/wp-admin/includes/privacy-tools.php

    r53455 r54891  
    536536    }
    537537
    538     $zip = new ZipArchive;
     538    $zip = new ZipArchive();
    539539    if ( true === $zip->open( $archive_pathname, ZipArchive::CREATE ) ) {
    540540        if ( ! $zip->addFile( $json_report_pathname, 'export.json' ) ) {
Note: See TracChangeset for help on using the changeset viewer.