aboutsummaryrefslogtreecommitdiffstats
path: root/includes/cache/LinkCache.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/cache/LinkCache.php')
-rw-r--r--includes/cache/LinkCache.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/includes/cache/LinkCache.php b/includes/cache/LinkCache.php
index 940f8698e8fb..a3b1b2a841cc 100644
--- a/includes/cache/LinkCache.php
+++ b/includes/cache/LinkCache.php
@@ -86,9 +86,11 @@ class LinkCache {
* Get an instance of this class.
*
* @return LinkCache
- * @deprecated since 1.28, use MediaWikiServices instead
+ * @deprecated since 1.28, hard deprecated since 1.37
+ * Use MediaWikiServices::getLinkCache instead
*/
public static function singleton() {
+ wfDeprecated( __METHOD__, '1.28' );
return MediaWikiServices::getInstance()->getLinkCache();
}