From ebe3cb73621b792a3d975b857499a0a48772c753 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Fri, 5 Mar 2010 21:39:21 +0000 Subject: [PATCH] Fixed some doxygen warnings --- includes/Exception.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/includes/Exception.php b/includes/Exception.php index f6bc6f87fc..ddcd739152 100644 --- a/includes/Exception.php +++ b/includes/Exception.php @@ -36,9 +36,9 @@ class MWException extends Exception { /** * Run hook to allow extensions to modify the text of the exception * - * @param String $name class name of the exception - * @param Array $args arguments to pass to the callback functions - * @return mixed string to output or null if any hook has been called + * @param $name String: class name of the exception + * @param $args Array: arguments to pass to the callback functions + * @return Mixed: string to output or null if any hook has been called */ function runHooks( $name, $args = array() ) { global $wgExceptionHooks; @@ -63,9 +63,9 @@ class MWException extends Exception { /** * Get a message from i18n * - * @param String $key message name - * @param String $fallback default message if the message cache can't be - * called by the exception + * @param $key String: message name + * @param $fallback String: default message if the message cache can't be + * called by the exception * The function also has other parameters that are arguments for the message * @return String message with arguments replaced */ @@ -127,7 +127,7 @@ class MWException extends Exception { * Return the requested URL and point to file and line number from which the * exception occured * - * @return string + * @return String */ function getLogMessage() { global $wgRequest; -- 2.20.1