Docs: Correct the order of @since and @var annotations.

Follow-up to [4673], [8656], [13041], [13827], [13895], [31134], [34490], [34566].

Props riddhipatel, shailu25.
Fixes #61999.
Built from https://develop.svn.wordpress.org/trunk@58995


git-svn-id: http://core.svn.wordpress.org/trunk@58391 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2024-09-06 14:36:19 +00:00
parent 68ed51f937
commit c311a9de36
3 changed files with 6 additions and 6 deletions

View File

@ -17,16 +17,16 @@ class Custom_Background {
/** /**
* Callback for administration header. * Callback for administration header.
* *
* @var callable
* @since 3.0.0 * @since 3.0.0
* @var callable
*/ */
public $admin_header_callback; public $admin_header_callback;
/** /**
* Callback for header div. * Callback for header div.
* *
* @var callable
* @since 3.0.0 * @since 3.0.0
* @var callable
*/ */
public $admin_image_div_callback; public $admin_image_div_callback;

View File

@ -17,24 +17,24 @@ class Custom_Image_Header {
/** /**
* Callback for administration header. * Callback for administration header.
* *
* @var callable
* @since 2.1.0 * @since 2.1.0
* @var callable
*/ */
public $admin_header_callback; public $admin_header_callback;
/** /**
* Callback for header div. * Callback for header div.
* *
* @var callable
* @since 3.0.0 * @since 3.0.0
* @var callable
*/ */
public $admin_image_div_callback; public $admin_image_div_callback;
/** /**
* Holds default headers. * Holds default headers.
* *
* @var array
* @since 3.0.0 * @since 3.0.0
* @var array
*/ */
public $default_headers = array(); public $default_headers = array();

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.7-alpha-58994'; $wp_version = '6.7-alpha-58995';
/** /**
* 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.