diff --git a/wp-includes/class-wp-customize-manager.php b/wp-includes/class-wp-customize-manager.php index d5cb14b526..a471f78347 100644 --- a/wp-includes/class-wp-customize-manager.php +++ b/wp-includes/class-wp-customize-manager.php @@ -2235,8 +2235,9 @@ final class WP_Customize_Manager { * @since 3.4.0 * @deprecated 4.7.0 * - * @param mixed $callback Value passed through for {@see 'wp_die_handler'} filter. - * @return mixed Value passed through for {@see 'wp_die_handler'} filter. + * @param callable|null $callback Optional. Value passed through for {@see 'wp_die_handler'} filter. + * Default null. + * @return callable|null Value passed through for {@see 'wp_die_handler'} filter. */ public function remove_preview_signature( $callback = null ) { _deprecated_function( __METHOD__, '4.7.0' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 101db5b121..20bd4efa66 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0-beta2-53243'; +$wp_version = '6.0-beta2-53244'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.