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
This commit is contained in:
parent
7174c2a0c7
commit
a2f5c24d36
|
@ -1024,7 +1024,11 @@ final class _WP_Editors {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Returns the TinyMCE locale.
|
||||||
|
*
|
||||||
* @since 4.8.0
|
* @since 4.8.0
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
*/
|
*/
|
||||||
public static function get_mce_locale() {
|
public static function get_mce_locale() {
|
||||||
if ( empty( self::$mce_locale ) ) {
|
if ( empty( self::$mce_locale ) ) {
|
||||||
|
@ -1036,7 +1040,11 @@ final class _WP_Editors {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Returns the TinyMCE base URL.
|
||||||
|
*
|
||||||
* @since 4.8.0
|
* @since 4.8.0
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
*/
|
*/
|
||||||
public static function get_baseurl() {
|
public static function get_baseurl() {
|
||||||
if ( empty( self::$baseurl ) ) {
|
if ( empty( self::$baseurl ) ) {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue