Docs: Add missing @return notations to three MO method DocBlocks.

Props subrataemfluence.
Fixes #44421.

Built from https://develop.svn.wordpress.org/trunk@44336


git-svn-id: http://core.svn.wordpress.org/trunk@44166 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2018-12-19 17:04:48 +00:00
parent 5b19e65c3b
commit 9992044ce6
2 changed files with 4 additions and 1 deletions

View File

@ -35,6 +35,7 @@ if ( ! class_exists( 'MO', false ) ) :
* Fills up with the entries from MO file $filename
*
* @param string $filename MO file to load
* @return bool True if the import from file was successful, otherwise false.
*/
function import_from_file( $filename ) {
$reader = new POMO_FileReader( $filename );
@ -211,6 +212,7 @@ if ( ! class_exists( 'MO', false ) ) :
/**
* @param POMO_FileReader $reader
* @return bool True if the import was successful, otherwise false.
*/
function import_from_reader( $reader ) {
$endian_string = MO::get_byteorder( $reader->readint32() );
@ -307,6 +309,7 @@ if ( ! class_exists( 'MO', false ) ) :
* 0x04 as context separator or 0x00 as singular/plural separator
* @param string $translation translation string from MO file. Might contain
* 0x00 as a plural translations separator
* @return Translation_Entry Entry instance.
*/
function &make_entry( $original, $translation ) {
$entry = new Translation_Entry();

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.1-alpha-44335';
$wp_version = '5.1-alpha-44336';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.