Editor: Explicitly declare `$post_types` and `$area` properties in `WP_Block_Template` class.
The `$post_types` and `$area` properties are assigned in the `_build_block_template_result_from_file()` and `_build_block_template_result_from_post()` functions. However, neither property was explicitly declared in the `WP_Block_Template` class. This commit explicitly declares both properties in the class. Why? (1) To make the code more readable and maintainable; (2) to avoid a `Deprecated: Creation of dynamic property WP_Block_Template::$post_types is deprecated` deprecation when PHP 8.2 is released. Ref: * PHP 8.2 Deprecate dynamic properties https://wiki.php.net/rfc/deprecate_dynamic_properties Follow-up to [52062]. Props jrf. Fixes #54670. Built from https://develop.svn.wordpress.org/trunk@52397 git-svn-id: http://core.svn.wordpress.org/trunk@51989 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
bf60226e36
commit
f067011b59
|
@ -129,4 +129,20 @@ class WP_Block_Template {
|
||||||
* @var int
|
* @var int
|
||||||
*/
|
*/
|
||||||
public $author;
|
public $author;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Post types.
|
||||||
|
*
|
||||||
|
* @since 5.9.0
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
public $post_types;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Area.
|
||||||
|
*
|
||||||
|
* @since 5.9.0
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
public $area;
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.9-beta3-52396';
|
$wp_version = '5.9-beta3-52397';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue