Make WordPress Core


Ignore:
Timestamp:
07/01/2019 08:00:12 AM (5 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/formatting.php

    r45578 r45580  
    24282428 * @return string Balanced text
    24292429 */
    2430 function balanceTags( $text, $force = false ) {
     2430function balanceTags( $text, $force = false ) {  // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
    24312431    if ( $force || get_option( 'use_balanceTags' ) == 1 ) {
    24322432        return force_balance_tags( $text );
Note: See TracChangeset for help on using the changeset viewer.