From 61091a2acf183f0e53d8e159a254e95f33309d97 Mon Sep 17 00:00:00 2001 From: Kosta Harlan Date: Thu, 3 Jan 2019 13:54:06 -0500 Subject: [PATCH] Add getters for properties accessed by Flow Bug: T212771 Follows-Up: Ic2367ca7e8d8b2b7ae4f80ad04081a0db2821de5 Change-Id: I35dad85740cae47877e9eb62d179b1412099aad1 --- includes/specials/pagers/ContribsPager.php | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/includes/specials/pagers/ContribsPager.php b/includes/specials/pagers/ContribsPager.php index ca13f3de85..1220e8617a 100644 --- a/includes/specials/pagers/ContribsPager.php +++ b/includes/specials/pagers/ContribsPager.php @@ -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[] */ -- 2.20.1