From: Siebrand Mazeland Date: Tue, 8 Mar 2016 07:38:08 +0000 (+0100) Subject: Explicitly declare ApiImport::getData() public X-Git-Tag: 1.31.0-rc.0~7711^2 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/comptes/ajouter.php?a=commitdiff_plain;h=d4eb4a7e5cae75abebc73e0b128d9fa7fc72c685;p=lhc%2Fweb%2Fwiklou.git Explicitly declare ApiImport::getData() public Used as such in this file. Change-Id: I52cae5763132b606f0e4b67f1359baee9fdad1c8 --- 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; } }