Changeset 51568 for trunk/tests/phpunit/tests/multisite/site.php
- Timestamp:
- 08/07/2021 10:29:41 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/multisite/site.php
r51564 r51568 18 18 protected static $uninitialized_site_id; 19 19 20 function set Up() {20 function set_up() { 21 21 global $wpdb; 22 parent::set Up();22 parent::set_up(); 23 23 $this->suppress = $wpdb->suppress_errors(); 24 24 } 25 25 26 function tear Down() {26 function tear_down() { 27 27 global $wpdb; 28 28 $wpdb->suppress_errors( $this->suppress ); 29 parent::tear Down();29 parent::tear_down(); 30 30 } 31 31
Note: See TracChangeset
for help on using the changeset viewer.