Make WordPress Core

Changeset 61668


Ignore:
Timestamp:
02/17/2026 11:00:13 PM (6 months ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Remove a few unnecessary PHPCS annotations.

Follow-up to [57337], [57548], [60295], [61120].

Props rodrigosprimo.
See #64627.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/l10n/class-wp-translation-file-mo.php

    r58922 r61668  
    9191                $this->parsed = true;
    9292
    93                 $file_contents = file_get_contents( $this->file ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents
     93                $file_contents = file_get_contents( $this->file );
    9494
    9595                if ( false === $file_contents ) {
  • trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php

    r60525 r61668  
    338338         * @return true|WP_Error True if the request has write access for the item, WP_Error object otherwise.
    339339         */
    340         public function get_items_permissions_check( $request ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
     340        public function get_items_permissions_check( $request ) {
    341341                if ( current_user_can( 'edit_theme_options' ) ) {
    342342                        return true;
  • trunk/tests/phpunit/includes/build-visual-html-tree.php

    r61519 r61668  
    11<?php
    2 
    3 /* phpcs:disable WordPress.Security.EscapeOutput.ExceptionNotEscaped */
    42
    53/**
     
    279277                                break;
    280278                        default:
    281                                 // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_var_export
    282279                                $serialized_token_type = var_export( $processor->get_token_type(), true );
    283280                                throw new Exception( "Unhandled token type for tree construction: {$serialized_token_type}" );
  • trunk/tests/phpunit/tests/template.php

    r61554 r61668  
    12651265                ob_start();
    12661266
    1267                 ini_set( 'error_log', $this->temp_filename() ); // phpcs:ignore WordPress.PHP.IniSet.log_errors_Blacklisted, WordPress.PHP.IniSet.Risky
     1267                ini_set( 'error_log', $this->temp_filename() );
    12681268                foreach ( $ini_config_options as $config => $option ) {
    12691269                        ini_set( $config, $option );
Note: See TracChangeset for help on using the changeset viewer.