From 865870e332e2d6c3de8ccf097c76b10dd46dc86c Mon Sep 17 00:00:00 2001 From: David Baumwald Date: Fri, 23 Sep 2022 21:29:52 +0000 Subject: [PATCH] Coding Standards: Correct alignment in `WP_Theme_JSON_Resolver::get_core_data()`. Follow-up to [54251]. See #55647. git-svn-id: https://develop.svn.wordpress.org/trunk@54298 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-theme-json-resolver.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/class-wp-theme-json-resolver.php b/src/wp-includes/class-wp-theme-json-resolver.php index 16680e7317..a92f5c1e09 100644 --- a/src/wp-includes/class-wp-theme-json-resolver.php +++ b/src/wp-includes/class-wp-theme-json-resolver.php @@ -135,8 +135,8 @@ class WP_Theme_JSON_Resolver { return static::$core; } - $config = static::read_json_file( __DIR__ . '/theme.json' ); - $config = static::translate( $config ); + $config = static::read_json_file( __DIR__ . '/theme.json' ); + $config = static::translate( $config ); /** * Filters the default data provided by WordPress for global styles & settings. *