diff options
author | Umherirrender <umherirrender_de.wp@web.de> | 2022-11-09 01:11:22 +0100 |
---|---|---|
committer | Umherirrender <umherirrender_de.wp@web.de> | 2022-11-10 19:23:46 +0000 |
commit | ea5ea60b31e78c2a849d38012e80390c216b7b95 (patch) | |
tree | fad53b0e3347db61a83efe3211b3a4e47a8458ad /includes/htmlform | |
parent | ea75c68ad5a757517cab4be4df6f5a65dd599d3b (diff) | |
download | mediawikicore-ea5ea60b31e78c2a849d38012e80390c216b7b95.tar.gz mediawikicore-ea5ea60b31e78c2a849d38012e80390c216b7b95.zip |
Various doc fixes about false on method arguments/return types
Doc-only changes
Change-Id: I5177f582ae7ee70c357e9389fed14819faf79463
Diffstat (limited to 'includes/htmlform')
-rw-r--r-- | includes/htmlform/HTMLForm.php | 2 | ||||
-rw-r--r-- | includes/htmlform/HTMLFormField.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/includes/htmlform/HTMLForm.php b/includes/htmlform/HTMLForm.php index 5b730ba3a27c..6784b5078f56 100644 --- a/includes/htmlform/HTMLForm.php +++ b/includes/htmlform/HTMLForm.php @@ -244,7 +244,7 @@ class HTMLForm extends ContextSource { /** * Form action URL. false means we will use the URL to set Title * @since 1.19 - * @var bool|string + * @var string|false */ protected $mAction = false; diff --git a/includes/htmlform/HTMLFormField.php b/includes/htmlform/HTMLFormField.php index 65a9af253447..ab7973cce206 100644 --- a/includes/htmlform/HTMLFormField.php +++ b/includes/htmlform/HTMLFormField.php @@ -21,7 +21,7 @@ abstract class HTMLFormField { protected $mHelpClass = false; protected $mDefault; /** - * @var array|bool|null + * @var array|null|false */ protected $mOptions = false; protected $mOptionsLabelsNotFromMessage = false; |