Make WordPress Core

Changeset 47942


Ignore:
Timestamp:
06/09/2020 10:40:50 PM (4 years ago)
Author:
desrosj
Message:

Coding Standards: Cleans up some PHPCS issues introduced in [47938].

See #20875.

Location:
trunk
Files:
2 edited

Legend:

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

    r47938 r47942  
    629629    }
    630630
    631     require_once( ABSPATH . WPINC . '/cache-compat.php' );
     631    require_once ABSPATH . WPINC . '/cache-compat.php';
    632632
    633633    /*
  • trunk/tests/phpunit/tests/cache.php

    r47938 r47942  
    325325        wp_cache_set( 'foo1', 'bar', 'group2' );
    326326
    327         $found = wp_cache_get_multiple( array( 'foo1', 'foo2', 'foo3', ), 'group1' );
     327        $found = wp_cache_get_multiple( array( 'foo1', 'foo2', 'foo3' ), 'group1' );
    328328
    329329        $expected = array(
Note: See TracChangeset for help on using the changeset viewer.