From 63b96dcdd9dd2f175f5692cbe4d6a857ab1b9693 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bartosz=20Dziewo=C5=84ski?= Date: Thu, 6 Aug 2015 13:49:51 +0200 Subject: [PATCH] Status: Correct documentation Most of the docs for this class look misleading or downright incorrect... Change-Id: I4c7397a5dfeca7447cb98611c4f3befaefaefaba --- includes/Status.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/Status.php b/includes/Status.php index fbb5daae20..28af7f539f 100644 --- a/includes/Status.php +++ b/includes/Status.php @@ -281,7 +281,7 @@ class Status { * Otherwise, if its an array, just use the first value as the * message and the remaining items as the params. * - * @return string + * @return Message */ protected function getErrorMessage( $error ) { if ( is_array( $error ) ) { @@ -316,9 +316,9 @@ class Status { } /** - * Return an array with the wikitext for each item in the array. + * Return an array with a Message object for each error. * @param array $errors - * @return array + * @return Message[] */ protected function getErrorMessageArray( $errors ) { return array_map( array( $this, 'getErrorMessage' ), $errors ); -- 2.20.1