diff options
author | Aryeh Gregor <ayg@aryeh.name> | 2019-10-25 11:07:22 +0300 |
---|---|---|
committer | C. Scott Ananian <cscott@cscott.net> | 2020-08-21 00:18:45 -0400 |
commit | a24e8a06b584856d3204c00320982d1e54d0fc58 (patch) | |
tree | 7bec2c0d0baff1628a7ded2b5ac0380eddc445b7 /includes/db | |
parent | a1ca5339e368c2396747386c7bf2275756d8af36 (diff) | |
download | mediawikicore-a24e8a06b584856d3204c00320982d1e54d0fc58.tar.gz mediawikicore-a24e8a06b584856d3204c00320982d1e54d0fc58.zip |
Mark CONSTRUCTOR_OPTIONS as internal
These were never meant to be part of the public interface and should not
ever have been marked with @since. They're only useful for constructing
the respective objects, which no outside users should be doing.
Change-Id: I86e01272d46fc72af32172d8a12b9180971d4613
Diffstat (limited to 'includes/db')
-rw-r--r-- | includes/db/MWLBFactory.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/includes/db/MWLBFactory.php b/includes/db/MWLBFactory.php index 0d990f89d5a3..0dd361eae268 100644 --- a/includes/db/MWLBFactory.php +++ b/includes/db/MWLBFactory.php @@ -36,8 +36,7 @@ abstract class MWLBFactory { private static $loggedDeprecations = []; /** - * @var array - * @since 1.34 + * @internal For use by ServiceWiring */ public const APPLY_DEFAULT_CONFIG_OPTIONS = [ 'DBcompress', |