From: Niklas Laxström Date: Fri, 22 Jan 2016 08:01:21 +0000 (+0100) Subject: Add missing @since to new IdLookup classes X-Git-Tag: 1.31.0-rc.0~8247 X-Git-Url: http://git.cyclocoop.org/%24dirpuce/puce%24spip_lang_rtl.gif?a=commitdiff_plain;h=7c131627b9917225207c77ea7949bc407d9577f1;p=lhc%2Fweb%2Fwiklou.git Add missing @since to new IdLookup classes Follow up I49568358ec35fdfd0b9e53e441adabded5c7b80f Change-Id: I9f2e9a7c9bb5dd8608cfc6678a3557d916f0b09f --- 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 {