Make WordPress Core


Ignore:
Timestamp:
07/05/2019 01:44:41 AM (6 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-footer.php

    r42343 r45599  
    8181 * @since 4.6.0
    8282 */
    83 do_action( "admin_print_footer_scripts-{$hook_suffix}" );
     83do_action( "admin_print_footer_scripts-{$hook_suffix}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
    8484
    8585/**
     
    9898 * @since 2.8.0
    9999 */
    100 do_action( "admin_footer-{$hook_suffix}" );
     100do_action( "admin_footer-{$hook_suffix}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
    101101
    102102// get_site_option() won't exist when auto upgrading from <= 2.7
Note: See TracChangeset for help on using the changeset viewer.