From bc1f596877178469dfb14435ca4dbb7bfbea9482 Mon Sep 17 00:00:00 2001 From: Umherirrender Date: Mon, 25 Jun 2018 21:36:21 +0200 Subject: [PATCH] Declare HTMLSelectNamespace::mAllValue It is protected, because some extension extends this class Change-Id: I576e9e7e843844433655b11b8847c9e3060ba8e9 --- includes/htmlform/fields/HTMLSelectNamespace.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/htmlform/fields/HTMLSelectNamespace.php b/includes/htmlform/fields/HTMLSelectNamespace.php index f13aa1777c..7f74b3b206 100644 --- a/includes/htmlform/fields/HTMLSelectNamespace.php +++ b/includes/htmlform/fields/HTMLSelectNamespace.php @@ -3,6 +3,10 @@ * Wrapper for Html::namespaceSelector to use in HTMLForm */ class HTMLSelectNamespace extends HTMLFormField { + + /** @var string|null */ + protected $mAllValue; + public function __construct( $params ) { parent::__construct( $params ); -- 2.20.1