Make WordPress Core

Changeset 47185


Ignore:
Timestamp:
02/05/2020 05:01:55 AM (4 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Fix WPCS issue in [47184].

See #49344.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/dbdelta.php

    r47184 r47185  
    5151            $wpdb->prepare(
    5252                "
    53                 CREATE TABLE {$wpdb->prefix}dbdelta_test (
    54                     id bigint{$this->bigint_display_width} NOT NULL AUTO_INCREMENT,
     53                CREATE TABLE {$wpdb->prefix}dbdelta_test (" .
     54                    // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared
     55                    "id bigint{$this->bigint_display_width} NOT NULL AUTO_INCREMENT,
    5556                    column_1 varchar(255) NOT NULL,
    5657                    column_2 text,
Note: See TracChangeset for help on using the changeset viewer.