From d8968636b73092886a54bbe467acf1414afd85b0 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Wed, 19 Dec 2018 17:03:27 +0000 Subject: [PATCH] Docs: Add missing `@return` notations to three `MO` method DocBlocks. Props subrataemfluence. Fixes #44421. git-svn-id: https://develop.svn.wordpress.org/trunk@44336 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/pomo/mo.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/wp-includes/pomo/mo.php b/src/wp-includes/pomo/mo.php index 25b9e37a9f..836af801cd 100644 --- a/src/wp-includes/pomo/mo.php +++ b/src/wp-includes/pomo/mo.php @@ -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();