Docs: Update some @var tags per the documentation standards.

Follow-up to [27398], [29487], [41626], [51003].

See #53399.

git-svn-id: https://develop.svn.wordpress.org/trunk@52355 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2021-12-11 19:49:38 +00:00
parent 1b541a7e52
commit 70823f3ddf
4 changed files with 8 additions and 8 deletions

View File

@ -91,7 +91,7 @@ class WP_Block_Template {
* Post Id.
*
* @since 5.8.0
* @var integer|null
* @var int|null
*/
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.
*
* @since 4.0.0
* @var integer
* @var int
*/
public $priority = 160;

View File

@ -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;

View File

@ -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;