You appear to be a bot. Output may be restricted
Description
Drop tables that were created before running the tests.
Usage
Tests_Admin_IncludesSchema::wpTearDownAfterClass();
Parameters
Returns
void
Source
File name: wordpress-develop-tests/phpunit/tests/admin/includesSchema.php
Lines:
1 to 14 of 14
public static function wpTearDownAfterClass() { global $wpdb; $options = self::$options; $blogmeta = self::$blogmeta; $sitemeta = self::$sitemeta; // phpcs:disable WordPress.DB.PreparedSQL.InterpolatedNotPrepared $wpdb->query( "DROP TABLE IF EXISTS {$options}" ); $wpdb->query( "DROP TABLE IF EXISTS {$blogmeta}" ); $wpdb->query( "DROP TABLE IF EXISTS {$sitemeta}" ); // phpcs:enable }