From c7ad9afc25c7e2d9cf2b6c76803b9b0de3cbbefb Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sun, 28 Feb 2016 18:34:10 +0000 Subject: [PATCH] Docs: Add missing parameter and return documentation to the DocBlock for the deprecated `_search_terms_tidy()`. See #32246. git-svn-id: https://develop.svn.wordpress.org/trunk@36759 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/deprecated.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/wp-includes/deprecated.php b/src/wp-includes/deprecated.php index 6ec014c73c..de2b5c6abe 100644 --- a/src/wp-includes/deprecated.php +++ b/src/wp-includes/deprecated.php @@ -3346,6 +3346,9 @@ function wp_convert_bytes_to_hr( $bytes ) { * @since 2.9.0 * @access private * @deprecated 3.7.0 + * + * @param string $t Search terms to "tidy", e.g. trim. + * @return string Trimmed search terms. */ function _search_terms_tidy( $t ) { _deprecated_function( __FUNCTION__, '3.7' );