Changeset 51568 for trunk/tests/phpunit/tests/option/multisite.php
- Timestamp:
- 08/07/2021 10:29:41 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/option/multisite.php
r51331 r51568 13 13 protected $suppress = false; 14 14 15 function set Up() {15 function set_up() { 16 16 global $wpdb; 17 parent::set Up();17 parent::set_up(); 18 18 $this->suppress = $wpdb->suppress_errors(); 19 19 } 20 20 21 function tear Down() {21 function tear_down() { 22 22 global $wpdb; 23 23 $wpdb->suppress_errors( $this->suppress ); 24 parent::tear Down();24 parent::tear_down(); 25 25 } 26 26
Note: See TracChangeset
for help on using the changeset viewer.