From a572de85c308443acbc90ba166d2f47b640dab52 Mon Sep 17 00:00:00 2001 From: Erik Bernhardson Date: Thu, 30 Jun 2016 11:58:35 -0700 Subject: [PATCH] Correct two mistaken htmlform annotations Change-Id: Ica807b656af0eb5a82ec0b1ec2d7894fd79a6639 --- includes/htmlform/HTMLSelectNamespaceWithButton.php | 2 +- includes/htmlform/HTMLTextFieldWithButton.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/htmlform/HTMLSelectNamespaceWithButton.php b/includes/htmlform/HTMLSelectNamespaceWithButton.php index 24b15bd700..52259836df 100644 --- a/includes/htmlform/HTMLSelectNamespaceWithButton.php +++ b/includes/htmlform/HTMLSelectNamespaceWithButton.php @@ -3,7 +3,7 @@ * Creates a Html::namespaceSelector input field with a button assigned to the input field. */ class HTMLSelectNamespaceWithButton extends HTMLSelectNamespace { - /** @var HTMLFormClassWithButton $mClassWithButton */ + /** @var HTMLFormFieldWithButton $mClassWithButton */ protected $mClassWithButton = null; public function __construct( $info ) { diff --git a/includes/htmlform/HTMLTextFieldWithButton.php b/includes/htmlform/HTMLTextFieldWithButton.php index c6dac32270..7c1c6739e6 100644 --- a/includes/htmlform/HTMLTextFieldWithButton.php +++ b/includes/htmlform/HTMLTextFieldWithButton.php @@ -3,7 +3,7 @@ * Creates a text input field with a button assigned to the input field. */ class HTMLTextFieldWithButton extends HTMLTextField { - /** @var HTMLFormClassWithButton $mClassWithButton */ + /** @var HTMLFormFieldWithButton $mClassWithButton */ protected $mClassWithButton = null; public function __construct( $info ) { -- 2.20.1