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:
Sergey Biryukov 2021-12-11 19:50:59 +00:00
parent adee0cbf6b
commit 8bdaf90a14
5 changed files with 9 additions and 9 deletions

View File

@ -91,7 +91,7 @@ class WP_Block_Template {
* Post Id. * Post Id.
* *
* @since 5.8.0 * @since 5.8.0
* @var integer|null * @var int|null
*/ */
public $wp_id; public $wp_id;

View File

@ -56,7 +56,7 @@ class WP_Customize_Panel {
* Priority of the panel, defining the display order of panels and sections. * Priority of the panel, defining the display order of panels and sections.
* *
* @since 4.0.0 * @since 4.0.0
* @var integer * @var int
*/ */
public $priority = 160; public $priority = 160;

View File

@ -56,7 +56,7 @@ class WP_Customize_Section {
* Priority of the section which informs load order of sections. * Priority of the section which informs load order of sections.
* *
* @since 3.4.0 * @since 3.4.0
* @var integer * @var int
*/ */
public $priority = 160; public $priority = 160;

View File

@ -28,7 +28,7 @@ class WP_Customize_Date_Time_Control extends WP_Customize_Control {
* Minimum Year. * Minimum Year.
* *
* @since 4.9.0 * @since 4.9.0
* @var integer * @var int
*/ */
public $min_year = 1000; public $min_year = 1000;
@ -36,7 +36,7 @@ class WP_Customize_Date_Time_Control extends WP_Customize_Control {
* Maximum Year. * Maximum Year.
* *
* @since 4.9.0 * @since 4.9.0
* @var integer * @var int
*/ */
public $max_year = 9999; 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. * Allow past date, if set to false user can only select future date.
* *
* @since 4.9.0 * @since 4.9.0
* @var boolean * @var bool
*/ */
public $allow_past_date = true; 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. * Whether hours, minutes, and meridian should be shown.
* *
* @since 4.9.0 * @since 4.9.0
* @var boolean * @var bool
*/ */
public $include_time = true; 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. * the value will still be saved in Y-m-d H:i:s format.
* *
* @since 4.9.0 * @since 4.9.0
* @var boolean * @var bool
*/ */
public $twelve_hour_format = true; public $twelve_hour_format = true;

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @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. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.