Make WordPress Core

Changeset 56751 for trunk/src/xmlrpc.php


Ignore:
Timestamp:
09/30/2023 07:37:34 AM (2 years ago)
Author:
SergeyBiryukov
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/xmlrpc.php

    r55918 r56751  
    9898 * @param string $msg Information describing logging reason.
    9999 */
    100 function logIO( $io, $msg ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
     100function logIO( $io, $msg ) {
    101101    _deprecated_function( __FUNCTION__, '3.4.0', 'error_log()' );
    102102    if ( ! empty( $GLOBALS['xmlrpc_logging'] ) ) {
Note: See TracChangeset for help on using the changeset viewer.