Make WordPress Core


Ignore:
Timestamp:
07/05/2019 01:44:41 AM (5 years ago)
Author:
pento
Message:

Coding Standards: Mark the handful of hook names with uppercase characters or hyphens as ignored.

See #47632.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/admin-header.php

    r45175 r45599  
    109109 * @since 2.6.0
    110110 */
    111 do_action( "admin_print_styles-{$hook_suffix}" );
     111do_action( "admin_print_styles-{$hook_suffix}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
    112112
    113113/**
     
    123123 * @since 2.1.0
    124124 */
    125 do_action( "admin_print_scripts-{$hook_suffix}" );
     125do_action( "admin_print_scripts-{$hook_suffix}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
    126126
    127127/**
     
    140140 * @since 2.1.0
    141141 */
    142 do_action( "admin_head-{$hook_suffix}" );
     142do_action( "admin_head-{$hook_suffix}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
    143143
    144144/**
Note: See TracChangeset for help on using the changeset viewer.