X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fsite%2FFileBasedSiteLookup.php;h=174d66765117d7e08aa5b73f664529587d2f2c73;hb=46586a243c6adf6a7020608173ba5a73fb97ee72;hp=c168a47ffb903e6a1d09af74b3c865759e823b83;hpb=708f51c2c60b970549f463776faa38318fd11d21;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/site/FileBasedSiteLookup.php b/includes/site/FileBasedSiteLookup.php index c168a47ffb..174d667651 100644 --- a/includes/site/FileBasedSiteLookup.php +++ b/includes/site/FileBasedSiteLookup.php @@ -21,14 +21,10 @@ */ /** - * Provides a file-based cache of a SiteStore. The sites are stored in - * a json file. (see docs/sitescache.txt regarding format) - * - * The cache can be built with the rebuildSitesCache.php maintenance script, - * and a MediaWiki instance can be setup to use this by setting the - * 'wgSitesCacheFile' configuration to the cache file location. + * Provides a file-based cache of a SiteStore, using a json file. * * @since 1.25 + * @deprecated since 1.33 Use CachingSiteStore instead. */ class FileBasedSiteLookup implements SiteLookup { @@ -46,6 +42,7 @@ class FileBasedSiteLookup implements SiteLookup { * @param string $cacheFile */ public function __construct( $cacheFile ) { + wfDeprecated( __CLASS__, '1.33' ); $this->cacheFile = $cacheFile; }