From 00ed25e2c9b20607418cbe8a6103c336d1bf92bd Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 30 Sep 2023 07:37:34 +0000 Subject: [PATCH] Coding Standards: Remove redundant ignore annotations, take 3. This removes ignore annotations about invalid function names for deprecated functions. Those are ignored by design in WPCS since version 2.2.0. Follow-up to [45580], [47612], [47927]. Props jrf. See #59161. git-svn-id: https://develop.svn.wordpress.org/trunk@56751 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/deprecated.php | 2 +- src/xmlrpc.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/deprecated.php b/src/wp-includes/deprecated.php index 9f8981d663..51d7490c87 100644 --- a/src/wp-includes/deprecated.php +++ b/src/wp-includes/deprecated.php @@ -4008,7 +4008,7 @@ function wp_make_content_images_responsive( $content ) { * @access private * @deprecated 5.5.0 */ -function wp_unregister_GLOBALS() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid +function wp_unregister_GLOBALS() { // register_globals was deprecated in PHP 5.3 and removed entirely in PHP 5.4. _deprecated_function( __FUNCTION__, '5.5.0' ); } diff --git a/src/xmlrpc.php b/src/xmlrpc.php index ac0f191792..b37abde3c2 100644 --- a/src/xmlrpc.php +++ b/src/xmlrpc.php @@ -97,7 +97,7 @@ exit; * @param string $io Whether input or output * @param string $msg Information describing logging reason. */ -function logIO( $io, $msg ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid +function logIO( $io, $msg ) { _deprecated_function( __FUNCTION__, '3.4.0', 'error_log()' ); if ( ! empty( $GLOBALS['xmlrpc_logging'] ) ) { error_log( $io . ' - ' . $msg );