diff --git a/src/wp-admin/includes/class-wp-upgrader.php b/src/wp-admin/includes/class-wp-upgrader.php
index a2b2c9ed06..88c6d5d604 100644
a
|
b
|
class WP_Upgrader { |
911 | 911 | * |
912 | 912 | * @since 4.5.0 |
913 | 913 | * |
| 914 | * @global wpdb $wpdb The WordPress database abstraction object. |
| 915 | * |
914 | 916 | * @param string $lock_name The name of this unique lock. |
915 | 917 | * @param int $release_timeout Optional. The duration in seconds to respect an existing lock. |
916 | 918 | * Default: 1 hour. |
diff --git a/src/wp-includes/class-wp-block.php b/src/wp-includes/class-wp-block.php
index 8a51e66085..973c6499b4 100644
a
|
b
|
class WP_Block { |
195 | 195 | * Generates the render output for the block. |
196 | 196 | * |
197 | 197 | * @since 5.5.0 |
| 198 | * |
| 199 | * @global WP_Post $post Global post object. |
198 | 200 | * |
199 | 201 | * @param array $options { |
200 | 202 | * Optional options object. |
diff --git a/src/wp-includes/class-wp-locale.php b/src/wp-includes/class-wp-locale.php
index ca98f9d301..8b4e9ff260 100644
a
|
b
|
class WP_Locale { |
124 | 124 | * @since 2.1.0 |
125 | 125 | * |
126 | 126 | * @global string $text_direction |
127 | | * @global string $wp_version The WordPress version string. |
| 127 | * |
128 | 128 | */ |
129 | 129 | public function init() { |
130 | 130 | // The weekdays. |
diff --git a/src/wp-includes/class-wp-tax-query.php b/src/wp-includes/class-wp-tax-query.php
index e7b1e2a95a..881e0ce2dc 100644
a
|
b
|
class WP_Tax_Query { |
589 | 589 | * |
590 | 590 | * @since 3.2.0 |
591 | 591 | * |
592 | | * @global wpdb $wpdb The WordPress database abstraction object. |
593 | | * |
594 | 592 | * @param array $query The single query. Passed by reference. |
595 | 593 | * @param string $resulting_field The resulting field. Accepts 'slug', 'name', 'term_taxonomy_id', |
596 | 594 | * or 'term_id'. Default 'term_id'. |
diff --git a/src/wp-includes/class-wp-term-query.php b/src/wp-includes/class-wp-term-query.php
index 18c85e89b2..ae391bfcf5 100644
a
|
b
|
class WP_Term_Query { |
910 | 910 | * |
911 | 911 | * @since 4.6.0 |
912 | 912 | * |
913 | | * @global wpdb $wpdb WordPress database abstraction object. |
914 | | * |
915 | 913 | * @param string $orderby_raw Alias for the field to order by. |
916 | 914 | * @return string|false Value to used in the ORDER clause. False otherwise. |
917 | 915 | */ |