From d4eb4a7e5cae75abebc73e0b128d9fa7fc72c685 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Tue, 8 Mar 2016 08:38:08 +0100 Subject: [PATCH] Explicitly declare ApiImport::getData() public Used as such in this file. Change-Id: I52cae5763132b606f0e4b67f1359baee9fdad1c8 --- includes/api/ApiImport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/api/ApiImport.php b/includes/api/ApiImport.php index c5a8a7161d..10106ff02b 100644 --- a/includes/api/ApiImport.php +++ b/includes/api/ApiImport.php @@ -194,7 +194,7 @@ class ApiImportReporter extends ImportReporter { parent::reportPage( $title, $origTitle, $revisionCount, $successCount, $pageInfo ); } - function getData() { + public function getData() { return $this->mResultArr; } } -- 2.20.1