aboutsummaryrefslogtreecommitdiffstats
path: root/includes/htmlform/fields/HTMLFormFieldWithButton.php
diff options
context:
space:
mode:
authorHolger Knust <hknust@wikimedia.org>2020-04-07 17:38:17 -0400
committerKrinkle <krinklemail@gmail.com>2020-04-14 03:25:19 +0000
commit471d2371ab1b99ea679fe2d773b900c3903b8bc6 (patch)
treea7dc70f9eabb18d726834ae17296889d83d28f4b /includes/htmlform/fields/HTMLFormFieldWithButton.php
parent6b9e09f240eb96a51bb1173cd1e9e31beedd6f7d (diff)
downloadmediawikicore-471d2371ab1b99ea679fe2d773b900c3903b8bc6.tar.gz
mediawikicore-471d2371ab1b99ea679fe2d773b900c3903b8bc6.zip
doxygen: Changed Doxygen tags causing warnings during documentation generation
Updated Doxygen markup in several .php files triggering warnings when mwdocgen.php is executed. Removed obsolete settings MSCGEN_PATH and TCL_SUBST from Doxyfile. The former would generate a warning in 1.8.16 while TCL support was removed in 1.8.18. Since TCL_SUBST was blank anyway, it was removed prior to getting to .18 in production. Increased DOT_GRAPH_MAX_NODES from 50 to 200 since Doxygen complained about it being too low for API and Maintenance. Bug: T248706 Change-Id: I9c67f0807d1b43089d351263d4f591dee5501f36
Diffstat (limited to 'includes/htmlform/fields/HTMLFormFieldWithButton.php')
-rw-r--r--includes/htmlform/fields/HTMLFormFieldWithButton.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/includes/htmlform/fields/HTMLFormFieldWithButton.php b/includes/htmlform/fields/HTMLFormFieldWithButton.php
index 4372cd115c6b..5d4e2c4d2b95 100644
--- a/includes/htmlform/fields/HTMLFormFieldWithButton.php
+++ b/includes/htmlform/fields/HTMLFormFieldWithButton.php
@@ -3,22 +3,22 @@
* Enables HTMLFormField elements to be build with a button.
*/
class HTMLFormFieldWithButton extends HTMLFormField {
- /** @var string $mButtonClass CSS class for the button in this field */
+ /** @var string CSS class for the button in this field */
protected $mButtonClass = '';
- /** @var string|int $mButtonId Element ID for the button in this field */
+ /** @var string|int Element ID for the button in this field */
protected $mButtonId = '';
- /** @var string $mButtonName Name the button in this field */
+ /** @var string Name the button in this field */
protected $mButtonName = '';
- /** @var string $mButtonType Type of the button in this field (e.g. button or submit) */
+ /** @var string Type of the button in this field (e.g. button or submit) */
protected $mButtonType = 'submit';
- /** @var string $mButtonType Value for the button in this field */
+ /** @var string Value for the button in this field */
protected $mButtonValue;
- /** @var string[] $mButtonType Value for the button in this field */
+ /** @var string[] Value for the button in this field */
protected $mButtonFlags = [ 'progressive' ];
public function __construct( $info ) {