aboutsummaryrefslogtreecommitdiffstats
path: root/includes/htmlform
diff options
context:
space:
mode:
authorReedy <reedy@wikimedia.org>2020-05-11 01:55:41 +0100
committerReedy <reedy@wikimedia.org>2020-05-15 21:12:30 +0000
commit1af202073948385712bb18061908ad1fe786d28b (patch)
tree225a217ba6bfeeac586c0b996f8c8224f7113504 /includes/htmlform
parentbe96cf6cd8316ae6556f6d46c840c1ec8cf851b1 (diff)
downloadmediawikicore-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.php2
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'] ) ) {