Drop SiteSQLStore, deprecated in 1.27, unused
authorJames D. Forrester <jforrester@wikimedia.org>
Sat, 9 Feb 2019 01:26:04 +0000 (17:26 -0800)
committerJames D. Forrester <jforrester@wikimedia.org>
Sat, 9 Feb 2019 01:43:33 +0000 (17:43 -0800)
Change-Id: I6743417c3aafbba59ac02350e0190fbf688a5a40

RELEASE-NOTES-1.33
autoload.php
includes/site/SiteSQLStore.php [deleted file]

index ccf0041..e725198 100644 (file)
@@ -206,6 +206,9 @@ because of Phabricator reports.
   * Title->getSkinFromCssJsSubpage() – Use Title->getSkinFromConfigSubpage()
   * Title->isCssSubpage() – Use Title->isUserCssConfigPage()
   * Title->isJsSubpage() – Use Title->isUserJsConfigPage()
+* SiteSQLStore, deprecated in 1.27 and whose only method, ::newInstance(),
+  would return the global SiteStore instance, has been removed. You can get to
+  this via MediaWiki\MediaWikiServices::getInstance()->getSiteStore() directly.
 
 === Deprecations in 1.33 ===
 * The configuration option $wgUseESI has been deprecated, and is expected
index 37d113b..471fdd7 100644 (file)
@@ -1330,7 +1330,6 @@ $wgAutoloadLocalClasses = [
        'SiteImporter' => __DIR__ . '/includes/site/SiteImporter.php',
        'SiteList' => __DIR__ . '/includes/site/SiteList.php',
        'SiteLookup' => __DIR__ . '/includes/site/SiteLookup.php',
-       'SiteSQLStore' => __DIR__ . '/includes/site/SiteSQLStore.php',
        'SiteStats' => __DIR__ . '/includes/SiteStats.php',
        'SiteStatsInit' => __DIR__ . '/includes/SiteStatsInit.php',
        'SiteStatsUpdate' => __DIR__ . '/includes/deferred/SiteStatsUpdate.php',
diff --git a/includes/site/SiteSQLStore.php b/includes/site/SiteSQLStore.php
deleted file mode 100644 (file)
index b106d11..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-<?php
-
-/**
- * Dummy class for accessing the global SiteStore instance.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- * http://www.gnu.org/copyleft/gpl.html
- *
- * @since 1.21
- *
- * @file
- * @ingroup Site
- *
- * @license GPL-2.0-or-later
- * @author Daniel Kinzler
- */
-class SiteSQLStore {
-
-       /**
-        * Returns the global SiteStore instance. This is a relict of the first implementation
-        * of SiteStore, and is kept around for compatibility.
-        *
-        * @note This does not return an instance of SiteSQLStore!
-        *
-        * @since 1.21
-        * @deprecated since 1.27 use MediaWikiServices::getSiteStore()
-        *             or MediaWikiServices::getSiteLookup() instead.
-        *
-        * @param null $sitesTable IGNORED
-        * @param BagOStuff|null $cache IGNORED
-        *
-        * @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'
-                       );
-               }
-
-               // NOTE: we silently ignore $cache for now, since some existing callers
-               // specify it. If we break compatibility with them, we could just as
-               // well just remove this class.
-
-               return \MediaWiki\MediaWikiServices::getInstance()->getSiteStore();
-       }
-
-}