Make WordPress Core


Ignore:
Timestamp:
10/01/2023 12:20:53 AM (13 months ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Remove redundant ignore annotations, take 4.

This removes ignore annotations related to sniffs which are not used by WP Core (like sniffs in the WordPress-Extra ruleset).

Follow-up to [48072], [51003], [55204], [56714].

Props jrf.
See #59161.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/sitemaps/class-wp-sitemaps-renderer.php

    r55210 r56752  
    132132        if ( ! empty( $index_xml ) ) {
    133133            // All output is escaped within get_sitemap_index_xml().
    134             // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
    135134            echo $index_xml;
    136135        }
     
    197196        if ( ! empty( $sitemap_xml ) ) {
    198197            // All output is escaped within get_sitemap_xml().
    199             // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
    200198            echo $sitemap_xml;
    201199        }
Note: See TracChangeset for help on using the changeset viewer.