Make WordPress Core


Ignore:
Timestamp:
07/01/2019 08:00:12 AM (6 years ago)
Author:
pento
Message:

Coding Standards: Fix/ignore the WordPress.NamingConventions.ValidFunctionName violations.

See #47632

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/category-template.php

    r44572 r45580  
    106106 * @return string|WP_Error Category name on success, WP_Error on failure.
    107107 */
    108 function get_the_category_by_ID( $cat_ID ) {
     108function get_the_category_by_ID( $cat_ID ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
    109109    $cat_ID   = (int) $cat_ID;
    110110    $category = get_term( $cat_ID );
Note: See TracChangeset for help on using the changeset viewer.