Code Quality: Remove unwanted spaces in the `WP_Block_Type` class
Follow-up [54155]. Props TobiasBg. Built from https://develop.svn.wordpress.org/trunk@54158 git-svn-id: http://core.svn.wordpress.org/trunk@53717 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a2aa01cdac
commit
69040b7afe
|
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.1-alpha-54157';
|
||||
$wp_version = '6.1-alpha-54158';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue