From fa432176d1aa6e92a6473aa5ae031ef447def599 Mon Sep 17 00:00:00 2001 From: Max Semenik Date: Sat, 8 Dec 2018 13:11:27 -0800 Subject: [PATCH] Hard deprecated SiteSQLStore::newInstance() Deprecated in 1.27, no callers. Change-Id: Ia262790cc6804b29fee656d0f53be1374bf04c2f --- includes/site/SiteSQLStore.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/site/SiteSQLStore.php b/includes/site/SiteSQLStore.php index 91d9ef7c5d..b106d11794 100644 --- a/includes/site/SiteSQLStore.php +++ b/includes/site/SiteSQLStore.php @@ -44,6 +44,7 @@ class SiteSQLStore { * @return SiteStore */ public static function newInstance( $sitesTable = null, BagOStuff $cache = null ) { + wfDeprecated( __METHOD__, '1.27' ); if ( $sitesTable !== null ) { throw new InvalidArgumentException( __METHOD__ . ': $sitesTable parameter is unused and must be null' -- 2.20.1