From a8629e30ed3e6d80a09512e5b7aa3eead8f4fb31 Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Mon, 7 May 2012 14:34:07 -0700 Subject: [PATCH] (bug 36603) Make DumpFilter::$sink public again This is required by dump unit testing for now. The change was introduced by commit ab6e54e0 https://gerrit.wikimedia.org/r/#/c/6089/ We will have to update the Dump tests to no more reference sink directly but use a proper accessing method that has yet to be written. Change-Id: I1246739c4ea174b13af475db8cfcb48740ecc2df --- includes/Export.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/includes/Export.php b/includes/Export.php index 811d716629..ea6fd9421b 100644 --- a/includes/Export.php +++ b/includes/Export.php @@ -1177,8 +1177,10 @@ class DumpFilter { /** * @var DumpOutput + * FIXME will need to be made protected whenever legacy code + * is updated. */ - protected $sink; + public $sink; /** * @var bool -- 2.20.1