Merge "Mark protected IndexPager properties also as protected in subclasses"
[lhc/web/wiklou.git] / includes / specials / pagers / ContribsPager.php
index 59f26a2..ca13f3d 100644 (file)
@@ -429,7 +429,7 @@ class ContribsPager extends RangeChronologicalPager {
                return [ 'rev_id' ];
        }
 
-       function doBatchLookups() {
+       protected function doBatchLookups() {
                # Do a link batch query
                $this->mResult->seek( 0 );
                $parentRevIds = [];
@@ -465,14 +465,14 @@ class ContribsPager extends RangeChronologicalPager {
        /**
         * @return string
         */
-       function getStartBody() {
+       protected function getStartBody() {
                return "<ul class=\"mw-contributions-list\">\n";
        }
 
        /**
         * @return string
         */
-       function getEndBody() {
+       protected function getEndBody() {
                return "</ul>\n";
        }