More minor bits of documentation
Object type hint on mPrinter
This commit is contained in:
parent
c105152ef1
commit
f63b5040e3
2 changed files with 8 additions and 3 deletions
|
|
@ -847,8 +847,8 @@ abstract class ApiBase {
|
|||
* Prints usage info on failure.
|
||||
* @param $paramName string Parameter name
|
||||
* @param $value int Parameter value
|
||||
* @param $min int Minimum value
|
||||
* @param $max int Maximum value for users
|
||||
* @param $min int|null Minimum value
|
||||
* @param $max int|null Maximum value for users
|
||||
* @param $botMax int Maximum value for sysops/bots
|
||||
* @param $enforceLimits Boolean Whether to enforce (die) if value is outside limits
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -123,7 +123,12 @@ class ApiMain extends ApiBase {
|
|||
)
|
||||
);
|
||||
|
||||
private $mPrinter, $mModules, $mModuleNames, $mFormats, $mFormatNames;
|
||||
/**
|
||||
* @var ApiFormatBase
|
||||
*/
|
||||
private $mPrinter;
|
||||
|
||||
private $mModules, $mModuleNames, $mFormats, $mFormatNames;
|
||||
private $mResult, $mAction, $mShowVersions, $mEnableWrite, $mRequest;
|
||||
private $mInternalMode, $mSquidMaxage, $mModule;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue