diff options
author | Umherirrender <umherirrender_de.wp@web.de> | 2024-09-07 22:22:13 +0200 |
---|---|---|
committer | Umherirrender <umherirrender_de.wp@web.de> | 2024-09-07 22:22:13 +0200 |
commit | 3fca49a1f45fa48d2778cbddb0538b6c0cb4503d (patch) | |
tree | 2f7e0cfbd3aac3765806005ba3b230ea6d09e6a0 /includes/api/ApiUpload.php | |
parent | e659256efebe478fab1ce5d16b67faa2cccdf5d6 (diff) | |
download | mediawikicore-3fca49a1f45fa48d2778cbddb0538b6c0cb4503d.tar.gz mediawikicore-3fca49a1f45fa48d2778cbddb0538b6c0cb4503d.zip |
api: Add missing documentation to class properties
Add doc-typehints to class properties found by the PropertyDocumentation
sniff to improve the documentation.
Once the sniff is enabled it avoids that new code is missing type
declarations. This is focused on documentation and does not change code.
Change-Id: I8b33b5f4d91c1935228e7010327dbc6ce138fc00
Diffstat (limited to 'includes/api/ApiUpload.php')
-rw-r--r-- | includes/api/ApiUpload.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/includes/api/ApiUpload.php b/includes/api/ApiUpload.php index 222716661a93..6f5cf88ee539 100644 --- a/includes/api/ApiUpload.php +++ b/includes/api/ApiUpload.php @@ -49,6 +49,7 @@ class ApiUpload extends ApiBase { /** @var UploadBase|UploadFromChunks */ protected $mUpload = null; + /** @var array */ protected $mParams; private JobQueueGroup $jobQueueGroup; |