From 2493483c56471ac07467191dbb7e05259cbde995 Mon Sep 17 00:00:00 2001 From: Vicente Canales Date: Mon, 2 Oct 2023 14:56:09 -0300 Subject: [PATCH] Run phpcbf on changes --- lib/class-wp-theme-json-gutenberg.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/class-wp-theme-json-gutenberg.php b/lib/class-wp-theme-json-gutenberg.php index e2d4ccc1c5b120..52fa967b9f5ebf 100644 --- a/lib/class-wp-theme-json-gutenberg.php +++ b/lib/class-wp-theme-json-gutenberg.php @@ -3317,7 +3317,7 @@ public function get_data() { $items = array(); if ( isset( $preset['theme'] ) ) { foreach ( $preset['theme'] as $item ) { - if ( is_array( $item ) ){ + if ( is_array( $item ) ) { $slug = $item['slug']; unset( $item['slug'] ); $items[ $slug ] = $item; @@ -3326,7 +3326,7 @@ public function get_data() { } if ( isset( $preset['custom'] ) ) { foreach ( $preset['custom'] as $item ) { - if ( is_array( $item ) ){ + if ( is_array( $item ) ) { $slug = $item['slug']; unset( $item['slug'] ); $items[ $slug ] = $item;