diff options
author | Nikki Nikkhoui <nnikkhoui@wikimedia.org> | 2020-07-10 12:23:59 -0700 |
---|---|---|
committer | daniel <dkinzler@wikimedia.org> | 2020-07-13 14:54:28 +0200 |
commit | 6b0e9eafe1dae0261fb871f7f08f7e4cdd111db3 (patch) | |
tree | a426bf2e52aed9175e775c5f4f52f685c6d2ee9b /includes/htmlform/fields/HTMLSelectNamespaceWithButton.php | |
parent | 7fa5ce21af35dffd8565f7274cb2d06e611251c8 (diff) | |
download | mediawikicore-6b0e9eafe1dae0261fb871f7f08f7e4cdd111db3.tar.gz mediawikicore-6b0e9eafe1dae0261fb871f7f08f7e4cdd111db3.zip |
HTML Classes stability annotations
Add stability annotations for HTML classes.
Bug: T247862
Change-Id: I4dad7b98213ceceb8c04b24e5d52e6fecadb3538
Diffstat (limited to 'includes/htmlform/fields/HTMLSelectNamespaceWithButton.php')
-rw-r--r-- | includes/htmlform/fields/HTMLSelectNamespaceWithButton.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/includes/htmlform/fields/HTMLSelectNamespaceWithButton.php b/includes/htmlform/fields/HTMLSelectNamespaceWithButton.php index 5ea7c843461b..dd5cd28acc77 100644 --- a/includes/htmlform/fields/HTMLSelectNamespaceWithButton.php +++ b/includes/htmlform/fields/HTMLSelectNamespaceWithButton.php @@ -1,11 +1,16 @@ <?php /** * Creates a Html::namespaceSelector input field with a button assigned to the input field. + * + * @stable to extend */ class HTMLSelectNamespaceWithButton extends HTMLSelectNamespace { /** @var HTMLFormFieldWithButton */ protected $mClassWithButton = null; + /* + * @stable to call + */ public function __construct( $info ) { $this->mClassWithButton = new HTMLFormFieldWithButton( $info ); parent::__construct( $info ); |