From a2f5c24d364ae87de6d48c18567488942878db9f Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 31 Dec 2019 01:31:02 +0000 Subject: [PATCH] Docs: Add missing descriptions and `@return` tags for `_WP_Editors::get_mce_locale()` and `::get_baseurl()`. Props adnan.limdi. Fixes #41869. Built from https://develop.svn.wordpress.org/trunk@47023 git-svn-id: http://core.svn.wordpress.org/trunk@46823 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-editor.php | 8 ++++++++ wp-includes/version.php | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/wp-includes/class-wp-editor.php b/wp-includes/class-wp-editor.php index 0585db0126..7617812f97 100644 --- a/wp-includes/class-wp-editor.php +++ b/wp-includes/class-wp-editor.php @@ -1024,7 +1024,11 @@ final class _WP_Editors { } /** + * Returns the TinyMCE locale. + * * @since 4.8.0 + * + * @return string */ public static function get_mce_locale() { if ( empty( self::$mce_locale ) ) { @@ -1036,7 +1040,11 @@ final class _WP_Editors { } /** + * Returns the TinyMCE base URL. + * * @since 4.8.0 + * + * @return string */ public static function get_baseurl() { if ( empty( self::$baseurl ) ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 12cbf22f71..0346390d46 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-alpha-47022'; +$wp_version = '5.4-alpha-47023'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.