diff options
author | umherirrender <umherirrender_de.wp@web.de> | 2014-04-14 21:43:18 +0200 |
---|---|---|
committer | Umherirrender <umherirrender_de.wp@web.de> | 2014-04-14 19:52:18 +0000 |
commit | 9c614ac02d884abc110146d520cc842998d85e6a (patch) | |
tree | b18868a0d9ab7363ca82f13cfb8d3cd75dd0bc00 /includes/exception/HttpError.php | |
parent | 8f2ebcbf6769451c51e4c6a8dc138d619ba8d6aa (diff) | |
download | mediawikicore-9c614ac02d884abc110146d520cc842998d85e6a.tar.gz mediawikicore-9c614ac02d884abc110146d520cc842998d85e6a.zip |
Fixed some @params documentation
Swapped some "$var type" to "type $var" or added missing types
before the $var. Changed some other types to match the more common
spelling. Makes beginning of some text in captial.
Change-Id: I8c9f30128b46086064326708a4878228ba459447
Diffstat (limited to 'includes/exception/HttpError.php')
-rw-r--r-- | includes/exception/HttpError.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/exception/HttpError.php b/includes/exception/HttpError.php index f955f06b2fc0..6ab6e039295b 100644 --- a/includes/exception/HttpError.php +++ b/includes/exception/HttpError.php @@ -31,9 +31,9 @@ class HttpError extends MWException { /** * Constructor * - * @param $httpCode Integer: HTTP status code to send to the client - * @param string|Message $content content of the message - * @param string|Message $header content of the header (\<title\> and \<h1\>) + * @param int $httpCode HTTP status code to send to the client + * @param string|Message $content Content of the message + * @param string|Message $header Content of the header (\<title\> and \<h1\>) */ public function __construct( $httpCode, $content, $header = null ) { parent::__construct( $content ); |