From 57b8b613d0507fd2c1ed0b441db09f76a43d579f Mon Sep 17 00:00:00 2001 From: Joe McGill <801097+joemcgill@users.noreply.github.com> Date: Tue, 11 Jun 2024 11:15:27 -0500 Subject: [PATCH] Fix `@since` tag in docblock in `WP_Theme_JSON_Data_Gutenberg`. (#62425) The `get_theme_json` method was actually added in v18.5.0, not 18.3.0. This corrects the docblock reference. Co-authored-by: joemcgill Co-authored-by: fabiankaegy --- lib/class-wp-theme-json-data-gutenberg.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/class-wp-theme-json-data-gutenberg.php b/lib/class-wp-theme-json-data-gutenberg.php index 4ff7775f4b559c..2c7eec9d5dbf4a 100644 --- a/lib/class-wp-theme-json-data-gutenberg.php +++ b/lib/class-wp-theme-json-data-gutenberg.php @@ -72,7 +72,7 @@ public function get_data() { /** * Return theme JSON object. * - * @since 18.3.0 + * @since 18.5.0 * * @return WP_Theme_JSON */