We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa095a0 commit b057db7Copy full SHA for b057db7
src/DB_Command.php
@@ -1342,7 +1342,7 @@ public function columns( $args, $assoc_args ) {
1342
WP_CLI\Utils\wp_get_table_names( array( $args[0] ), array() );
1343
1344
$columns = $wpdb->get_results(
1345
- // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Asserted to be a valid table name through wp_get_table_names.
+ // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared -- Asserted to be a valid table name through wp_get_table_names.
1346
'SHOW COLUMNS FROM ' . $args[0]
1347
);
1348
0 commit comments