Skip to content

Commit

Permalink
Coding Standards: Cleans up some PHPCS issues introduced in [47938].
Browse files Browse the repository at this point in the history
See #20875.

git-svn-id: https://develop.svn.wordpress.org/trunk@47942 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
desrosj committed Jun 9, 2020
1 parent 5097db0 commit 45e9cb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/wp-includes/load.php
Expand Up @@ -628,7 +628,7 @@ function wp_start_object_cache() {
require_once ABSPATH . WPINC . '/cache.php';
}

require_once( ABSPATH . WPINC . '/cache-compat.php' );
require_once ABSPATH . WPINC . '/cache-compat.php';

/*
* If cache supports reset, reset instead of init if already
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/tests/cache.php
Expand Up @@ -324,7 +324,7 @@ public function test_get_multiple() {
wp_cache_set( 'foo2', 'bar', 'group1' );
wp_cache_set( 'foo1', 'bar', 'group2' );

$found = wp_cache_get_multiple( array( 'foo1', 'foo2', 'foo3', ), 'group1' );
$found = wp_cache_get_multiple( array( 'foo1', 'foo2', 'foo3' ), 'group1' );

$expected = array(
'foo1' => 'bar',
Expand Down

0 comments on commit 45e9cb7

Please sign in to comment.