Changeset 51568 for trunk/tests/phpunit/tests/customize/section.php
- Timestamp:
- 08/07/2021 10:29:41 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/customize/section.php
r51462 r51568 20 20 protected $manager; 21 21 22 function set Up() {23 parent::set Up();22 function set_up() { 23 parent::set_up(); 24 24 require_once ABSPATH . WPINC . '/class-wp-customize-manager.php'; 25 25 $GLOBALS['wp_customize'] = new WP_Customize_Manager(); … … 28 28 } 29 29 30 function tear Down() {30 function tear_down() { 31 31 $this->manager = null; 32 32 unset( $GLOBALS['wp_customize'] ); 33 parent::tear Down();33 parent::tear_down(); 34 34 } 35 35
Note: See TracChangeset
for help on using the changeset viewer.