From: Siebrand Mazeland Date: Sat, 18 Aug 2012 13:43:12 +0000 (+0200) Subject: Cannot make method visibility lower than super's. X-Git-Tag: 1.31.0-rc.0~22694 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dcompta/operations/supprimer.php?a=commitdiff_plain;h=b8e064a34d49168021bd29cdf1f3ee28f7a01b65;p=lhc%2Fweb%2Fwiklou.git Cannot make method visibility lower than super's. Change-Id: I8ed3f3bad954dd03bd80d23954e31ee5429c04fe --- diff --git a/maintenance/storage/orphanStats.php b/maintenance/storage/orphanStats.php index f30f07e424..8f0384ddd2 100644 --- a/maintenance/storage/orphanStats.php +++ b/maintenance/storage/orphanStats.php @@ -28,7 +28,7 @@ class OrphanStats extends Maintenance { $this->mDescription = "how some statistics on the blob_orphans table, created with trackBlobs.php"; } - private function getDB( $cluster ) { + protected function getDB( $cluster ) { $lb = wfGetLBFactory()->getExternalLB( $cluster ); return $lb->getConnection( DB_SLAVE ); }