Improve documentation of wfDeprecated
authorReedy <reedy@wikimedia.org>
Thu, 27 Dec 2018 20:29:14 +0000 (20:29 +0000)
committerThiemo Kreuz (WMDE) <thiemo.kreuz@wikimedia.de>
Fri, 28 Dec 2018 11:10:41 +0000 (11:10 +0000)
Change-Id: I20b7724f0cf2b0221ae27412844e4019ae451b61

includes/GlobalFunctions.php
includes/debug/MWDebug.php

index a5f4def..9f29114 100644 (file)
@@ -1063,15 +1063,14 @@ function wfLogDBError( $text, array $context = [] ) {
 /**
  * Throws a warning that $function is deprecated
  *
- * @param string $function
+ * @param string $function Function that is deprecated.
  * @param string|bool $version Version of MediaWiki that the function
  *    was deprecated in (Added in 1.19).
- * @param string|bool $component Added in 1.19.
+ * @param string|bool $component Component to which the function belongs.
+ *    If false, it is assumed the function is in MediaWiki core (Added in 1.19).
  * @param int $callerOffset How far up the call stack is the original
  *    caller. 2 = function that called the function that called
- *    wfDeprecated (Added in 1.20)
- *
- * @return null
+ *    wfDeprecated (Added in 1.20).
  */
 function wfDeprecated( $function, $version = false, $component = false, $callerOffset = 2 ) {
        MWDebug::deprecated( $function, $version, $component, $callerOffset + 1 );
index ae7f948..e877836 100644 (file)
@@ -185,7 +185,7 @@ class MWDebug {
         * @param string $function Function that is deprecated.
         * @param string|bool $version Version in which the function was deprecated.
         * @param string|bool $component Component to which the function belongs.
-        *    If false, it is assumbed the function is in MediaWiki core.
+        *    If false, it is assumed the function is in MediaWiki core.
         * @param int $callerOffset How far up the callstack is the original
         *    caller. 2 = function that called the function that called
         *    MWDebug::deprecated() (Added in 1.20).