diff options
author | Reedy <reedy@wikimedia.org> | 2020-05-11 01:55:41 +0100 |
---|---|---|
committer | Reedy <reedy@wikimedia.org> | 2020-05-15 21:12:30 +0000 |
commit | 1af202073948385712bb18061908ad1fe786d28b (patch) | |
tree | 225a217ba6bfeeac586c0b996f8c8224f7113504 /includes/htmlform | |
parent | be96cf6cd8316ae6556f6d46c840c1ec8cf851b1 (diff) | |
download | mediawikicore-1af202073948385712bb18061908ad1fe786d28b.tar.gz mediawikicore-1af202073948385712bb18061908ad1fe786d28b.zip |
Fix numerous Squiz.Scope.MethodScope.Missing
Change-Id: I7a5aa8555e94a0bcb97b37ec6f8ca854de7c5575
Diffstat (limited to 'includes/htmlform')
-rw-r--r-- | includes/htmlform/fields/HTMLTextAreaField.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/htmlform/fields/HTMLTextAreaField.php b/includes/htmlform/fields/HTMLTextAreaField.php index e9ed03198285..13efb75d22d5 100644 --- a/includes/htmlform/fields/HTMLTextAreaField.php +++ b/includes/htmlform/fields/HTMLTextAreaField.php @@ -88,7 +88,7 @@ class HTMLTextAreaField extends HTMLFormField { return Html::textarea( $this->mName, $value, $attribs ); } - function getInputOOUI( $value ) { + public function getInputOOUI( $value ) { $classes = []; if ( isset( $this->mParams['cols'] ) ) { |