diff options
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 ); |