Merge "Add getters for properties accessed by Flow"
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Fri, 4 Jan 2019 21:16:28 +0000 (21:16 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Fri, 4 Jan 2019 21:16:28 +0000 (21:16 +0000)
includes/specials/pagers/ContribsPager.php

index 92581a3..5112ccd 100644 (file)
@@ -431,6 +431,41 @@ class ContribsPager extends RangeChronologicalPager {
                return 'rev_timestamp';
        }
 
+       /**
+        * @return false|string
+        */
+       public function getTagFilter() {
+               return $this->tagFilter;
+       }
+
+       /**
+        * @return string
+        */
+       public function getContribs() {
+               return $this->contribs;
+       }
+
+       /**
+        * @return string
+        */
+       public function getTarget() {
+               return $this->target;
+       }
+
+       /**
+        * @return bool
+        */
+       public function isNewOnly() {
+               return $this->newOnly;
+       }
+
+       /**
+        * @return int|string
+        */
+       public function getNamespace() {
+               return $this->namespace;
+       }
+
        /**
         * @return string[]
         */