You appear to be a bot. Output may be restricted
Description
Tears down the test fixture.
Usage
Tests_Functions_Deprecated::tear_down();
Parameters
Returns
void
Source
File name: wordpress-develop-tests/phpunit/tests/functions/deprecated.php
Lines:
1 to 10 of 10
public function tear_down() { remove_action( 'deprecated_function_run', array( $this, 'deprecated_function' ), 10, 3 ); remove_action( 'deprecated_function_trigger_error', '__return_false' ); remove_action( 'deprecated_argument_run', array( $this, 'deprecated_argument' ), 10, 3 ); remove_action( 'deprecated_argument_trigger_error', '__return_false' ); remove_action( 'deprecated_file_included', array( $this, 'deprecated_argument' ), 10, 4 ); remove_action( 'deprecated_file_trigger_error', '__return_false' ); parent::tear_down(); }