Make WordPress Core


Ignore:
Timestamp:
07/05/2019 05:20:52 AM (5 years ago)
Author:
pento
Message:

Coding Standards: Fix all WordPress.WhiteSpace.PrecisionAlignment issues.

See #47632.

File:
1 edited

Legend:

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

    r45590 r45602  
    845845    $spaces    = wp_spaces_regexp();
    846846
    847     // phpcs:disable Squiz.Strings.ConcatenationSpacing.PaddingFound -- don't remove regex indentation
     847    // phpcs:disable Squiz.Strings.ConcatenationSpacing.PaddingFound,WordPress.WhiteSpace.PrecisionAlignment.Found -- don't remove regex indentation
    848848    $pattern =
    849849        '/'
     
    29042904                )
    29052905                (\)?)                                                  # 3: Trailing closing parenthesis (for parethesis balancing post processing)
    2906             ~xS'; // The regex is a non-anchored pattern and does not have a single fixed starting character.
    2907                   // Tell PCRE to spend more time optimizing since, when used on a page load, it will probably be used several times.
     2906            ~xS';
     2907            // The regex is a non-anchored pattern and does not have a single fixed starting character.
     2908            // Tell PCRE to spend more time optimizing since, when used on a page load, it will probably be used several times.
    29082909
    29092910            $ret = preg_replace_callback( $url_clickable, '_make_url_clickable_cb', $ret );
Note: See TracChangeset for help on using the changeset viewer.