Index: trunk/phase3/includes/api/ApiMain.php |
— | — | @@ -123,7 +123,12 @@ |
124 | 124 | ) |
125 | 125 | ); |
126 | 126 | |
127 | | - private $mPrinter, $mModules, $mModuleNames, $mFormats, $mFormatNames; |
| 127 | + /** |
| 128 | + * @var ApiFormatBase |
| 129 | + */ |
| 130 | + private $mPrinter; |
| 131 | + |
| 132 | + private $mModules, $mModuleNames, $mFormats, $mFormatNames; |
128 | 133 | private $mResult, $mAction, $mShowVersions, $mEnableWrite, $mRequest; |
129 | 134 | private $mInternalMode, $mSquidMaxage, $mModule; |
130 | 135 | |
Index: trunk/phase3/includes/api/ApiBase.php |
— | — | @@ -847,8 +847,8 @@ |
848 | 848 | * Prints usage info on failure. |
849 | 849 | * @param $paramName string Parameter name |
850 | 850 | * @param $value int Parameter value |
851 | | - * @param $min int Minimum value |
852 | | - * @param $max int Maximum value for users |
| 851 | + * @param $min int|null Minimum value |
| 852 | + * @param $max int|null Maximum value for users |
853 | 853 | * @param $botMax int Maximum value for sysops/bots |
854 | 854 | * @param $enforceLimits Boolean Whether to enforce (die) if value is outside limits |
855 | 855 | */ |