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