Add getters for properties accessed by Flow
authorKosta Harlan <kharlan@wikimedia.org>
Thu, 3 Jan 2019 18:54:06 +0000 (13:54 -0500)
committerCatrope <roan@wikimedia.org>
Thu, 3 Jan 2019 21:59:15 +0000 (21:59 +0000)
Bug: T212771
Follows-Up: Ic2367ca7e8d8b2b7ae4f80ad04081a0db2821de5
Change-Id: I35dad85740cae47877e9eb62d179b1412099aad1

includes/specials/pagers/ContribsPager.php

index ca13f3d..1220e86 100644 (file)
@@ -421,6 +421,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[]
         */