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.php

    r43571 r45580  
    198198 * @return int 0, if failure and ID of category on success.
    199199 */
    200 function get_cat_ID( $cat_name ) {
     200function get_cat_ID( $cat_name ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
    201201    $cat = get_term_by( 'name', $cat_name, 'category' );
    202202    if ( $cat ) {
Note: See TracChangeset for help on using the changeset viewer.