From 8f7cd07af602b088f5d53f981f6ff910342b774c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartosz=20Dziewo=C5=84ski?= Date: Fri, 17 Jun 2022 17:59:21 +0200 Subject: HTMLFormField: Fix Phan suppression about mClassWithButton Change-Id: Ie20fa54de1fcc69913b3881d2efe9192be5b90cc --- includes/htmlform/fields/HTMLTextFieldWithButton.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'includes/htmlform/fields/HTMLTextFieldWithButton.php') diff --git a/includes/htmlform/fields/HTMLTextFieldWithButton.php b/includes/htmlform/fields/HTMLTextFieldWithButton.php index 6105acb989b3..24fbc9e4ee87 100644 --- a/includes/htmlform/fields/HTMLTextFieldWithButton.php +++ b/includes/htmlform/fields/HTMLTextFieldWithButton.php @@ -20,4 +20,9 @@ class HTMLTextFieldWithButton extends HTMLTextField { public function getInputHTML( $value ) { return $this->mClassWithButton->getElement( parent::getInputHTML( $value ) ); } + + protected function getFieldLayoutOOUI( $inputField, $config ) { + $buttonWidget = $this->mClassWithButton->getInputOOUI( '' ); + return new HTMLFormActionFieldLayout( $inputField, $buttonWidget, $config ); + } } -- cgit v1.2.3