From 7c86dfee686c352cb4924667d061678e72f7d856 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Greg=20Zi=C3=83=C2=B3=C3=85=E2=80=9Akowski?= Date: Wed, 14 Sep 2022 13:51:39 +0000 Subject: [PATCH] Code Quality: Remove unwanted spaces in the `WP_Block_Type` class Follow-up [54155]. Props TobiasBg. git-svn-id: https://develop.svn.wordpress.org/trunk@54158 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-block-type.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wp-includes/class-wp-block-type.php b/src/wp-includes/class-wp-block-type.php index 47c3e0644b..b0ca475315 100644 --- a/src/wp-includes/class-wp-block-type.php +++ b/src/wp-includes/class-wp-block-type.php @@ -304,7 +304,7 @@ class WP_Block_Type { } $new_name = $name . '_handles'; - return isset( $this->{$new_name }[0] ) ? $this->{$new_name }[0] : null; + return isset( $this->{$new_name}[0] ) ? $this->{$new_name}[0] : null; } /** @@ -324,7 +324,7 @@ class WP_Block_Type { } $new_name = $name . '_handles'; - return isset( $this->{$new_name }[0] ); + return isset( $this->{$new_name}[0] ); } /** @@ -348,7 +348,7 @@ class WP_Block_Type { } $new_name = $name . '_handles'; - $this->{$new_name }[0] = $value; + $this->{$new_name}[0] = $value; } /**