diff --git a/src/wp-includes/blocks/block.php b/src/wp-includes/blocks/block.php
index d51b35d68b..24584be0ab 100644
|
a
|
b
|
|
| 8 | 8 | /** |
| 9 | 9 | * Renders the `core/block` block on server. |
| 10 | 10 | * |
| | 11 | * @global WP_Embed $wp_embed |
| | 12 | * |
| 11 | 13 | * @param array $attributes The block attributes. |
| 12 | 14 | * |
| 13 | 15 | * @return string Rendered HTML of the referenced block. |
diff --git a/src/wp-includes/blocks/calendar.php b/src/wp-includes/blocks/calendar.php
index f1f7967235..6f62839c10 100644
|
a
|
b
|
function block_core_calendar_has_published_posts() {
|
| 121 | 121 | * Queries the database for any published post and saves |
| 122 | 122 | * a flag whether any published post exists or not. |
| 123 | 123 | * |
| | 124 | * @global wpdb $wpdb WordPress database abstraction object. |
| | 125 | * |
| 124 | 126 | * @return bool Has any published posts or not. |
| 125 | 127 | */ |
| 126 | 128 | function block_core_calendar_update_has_published_posts() { |
diff --git a/src/wp-includes/blocks/comments.php b/src/wp-includes/blocks/comments.php
index 48aac15af6..b91fa9591d 100644
|
a
|
b
|
|
| 16 | 16 | * the block is in legacy mode. If not, the HTML generated in the editor is |
| 17 | 17 | * returned instead. |
| 18 | 18 | * |
| | 19 | * @global WP_Post $post Global post object. |
| | 20 | * |
| 19 | 21 | * @param array $attributes Block attributes. |
| 20 | 22 | * @param string $content Block default content. |
| 21 | 23 | * @param WP_Block $block Block instance. |