rebase on oct-10-2023

This commit is contained in:
Rachit Bhargava
2023-10-10 17:23:21 -04:00
parent d37566ffb6
commit d096058d7d
4789 changed files with 254611 additions and 307223 deletions

View File

@@ -84,7 +84,7 @@ class WP_Block_Template {
* 'custom'.
*
* @since 5.9.0
* @var string
* @var string|null
*/
public $origin;
@@ -127,7 +127,7 @@ class WP_Block_Template {
* A value of 0 means no author.
*
* @since 5.9.0
* @var int
* @var int|null
*/
public $author;
@@ -135,7 +135,7 @@ class WP_Block_Template {
* Post types.
*
* @since 5.9.0
* @var array
* @var string[]|null
*/
public $post_types;
@@ -143,7 +143,15 @@ class WP_Block_Template {
* Area.
*
* @since 5.9.0
* @var string
* @var string|null
*/
public $area;
/**
* Modified.
*
* @since 6.3.0
* @var string|null
*/
public $modified;
}