Docs: Update some `@var` tags per the documentation standards.
Follow-up to [27398], [29487], [41626], [51003]. See #53399. Built from https://develop.svn.wordpress.org/trunk@52355 git-svn-id: http://core.svn.wordpress.org/trunk@51947 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
adee0cbf6b
commit
8bdaf90a14
|
@ -91,7 +91,7 @@ class WP_Block_Template {
|
|||
* Post Id.
|
||||
*
|
||||
* @since 5.8.0
|
||||
* @var integer|null
|
||||
* @var int|null
|
||||
*/
|
||||
public $wp_id;
|
||||
|
||||
|
|
|
@ -56,7 +56,7 @@ class WP_Customize_Panel {
|
|||
* Priority of the panel, defining the display order of panels and sections.
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @var integer
|
||||
* @var int
|
||||
*/
|
||||
public $priority = 160;
|
||||
|
||||
|
|
|
@ -56,7 +56,7 @@ class WP_Customize_Section {
|
|||
* Priority of the section which informs load order of sections.
|
||||
*
|
||||
* @since 3.4.0
|
||||
* @var integer
|
||||
* @var int
|
||||
*/
|
||||
public $priority = 160;
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ class WP_Customize_Date_Time_Control extends WP_Customize_Control {
|
|||
* Minimum Year.
|
||||
*
|
||||
* @since 4.9.0
|
||||
* @var integer
|
||||
* @var int
|
||||
*/
|
||||
public $min_year = 1000;
|
||||
|
||||
|
@ -36,7 +36,7 @@ class WP_Customize_Date_Time_Control extends WP_Customize_Control {
|
|||
* Maximum Year.
|
||||
*
|
||||
* @since 4.9.0
|
||||
* @var integer
|
||||
* @var int
|
||||
*/
|
||||
public $max_year = 9999;
|
||||
|
||||
|
@ -44,7 +44,7 @@ class WP_Customize_Date_Time_Control extends WP_Customize_Control {
|
|||
* Allow past date, if set to false user can only select future date.
|
||||
*
|
||||
* @since 4.9.0
|
||||
* @var boolean
|
||||
* @var bool
|
||||
*/
|
||||
public $allow_past_date = true;
|
||||
|
||||
|
@ -52,7 +52,7 @@ class WP_Customize_Date_Time_Control extends WP_Customize_Control {
|
|||
* Whether hours, minutes, and meridian should be shown.
|
||||
*
|
||||
* @since 4.9.0
|
||||
* @var boolean
|
||||
* @var bool
|
||||
*/
|
||||
public $include_time = true;
|
||||
|
||||
|
@ -61,7 +61,7 @@ class WP_Customize_Date_Time_Control extends WP_Customize_Control {
|
|||
* the value will still be saved in Y-m-d H:i:s format.
|
||||
*
|
||||
* @since 4.9.0
|
||||
* @var boolean
|
||||
* @var bool
|
||||
*/
|
||||
public $twelve_hour_format = true;
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.9-beta2-52354';
|
||||
$wp_version = '5.9-beta2-52355';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue