From 9d4abcb025e705bce0a510297a6744c8bb0c285b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Gerg=C5=91=20Tisza?= Date: Mon, 23 May 2016 13:20:41 +0000 Subject: [PATCH] Add some missing MW version documentation * deprecate $wgAuth * add @since for Status::getStatusValue Change-Id: Ia11ef1e4788297ffea0a2beb4da731c7e771958c --- includes/DefaultSettings.php | 1 + includes/Status.php | 1 + 2 files changed, 2 insertions(+) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 0e06bcee16..ec9ec092c7 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -7057,6 +7057,7 @@ $wgExtensionCredits = []; /** * Authentication plugin. * @var $wgAuth AuthPlugin + * @deprecated since 1.27 use $wgAuthManagerConfig instead */ $wgAuth = null; diff --git a/includes/Status.php b/includes/Status.php index f8370e4488..d01f2693f3 100644 --- a/includes/Status.php +++ b/includes/Status.php @@ -118,6 +118,7 @@ class Status { /** * Returns the wrapped StatusValue object * @return StatusValue + * @since 1.27 */ public function getStatusValue() { return $this->sv; -- 2.20.1