From: Bartosz DziewoƄski Date: Thu, 6 Aug 2015 11:49:51 +0000 (+0200) Subject: Status: Correct documentation X-Git-Tag: 1.31.0-rc.0~10496^2 X-Git-Url: https://git.cyclocoop.org/%28%28?a=commitdiff_plain;h=63b96dcdd9dd2f175f5692cbe4d6a857ab1b9693;p=lhc%2Fweb%2Fwiklou.git Status: Correct documentation Most of the docs for this class look misleading or downright incorrect... Change-Id: I4c7397a5dfeca7447cb98611c4f3befaefaefaba --- 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 );