From 7c131627b9917225207c77ea7949bc407d9577f1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Fri, 22 Jan 2016 09:01:21 +0100 Subject: [PATCH] Add missing @since to new IdLookup classes Follow up I49568358ec35fdfd0b9e53e441adabded5c7b80f Change-Id: I9f2e9a7c9bb5dd8608cfc6678a3557d916f0b09f --- includes/user/CentralIdLookup.php | 2 ++ includes/user/LocalIdLookup.php | 1 + 2 files changed, 3 insertions(+) diff --git a/includes/user/CentralIdLookup.php b/includes/user/CentralIdLookup.php index 4c2b5b7a7c..4b833bac6c 100644 --- a/includes/user/CentralIdLookup.php +++ b/includes/user/CentralIdLookup.php @@ -23,6 +23,8 @@ /** * The CentralIdLookup service allows for connecting local users with * cluster-wide IDs. + * + * @since 1.27 */ abstract class CentralIdLookup implements IDBAccessObject { // Audience options for accessors diff --git a/includes/user/LocalIdLookup.php b/includes/user/LocalIdLookup.php index 58892ea5ee..c0f9c05490 100644 --- a/includes/user/LocalIdLookup.php +++ b/includes/user/LocalIdLookup.php @@ -28,6 +28,7 @@ * $wgSharedDB and $wgSharedTables set, and that all wikis involved in the * sharing are listed in $wgLocalDatabases, and that no wikis not involved in * the sharing are listed in $wgLocalDatabases. + * @since 1.27 */ class LocalIdLookup extends CentralIdLookup { -- 2.20.1