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/user/UserOptionsManager.php | |
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/user/UserOptionsManager.php')
-rw-r--r-- | includes/user/UserOptionsManager.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/includes/user/UserOptionsManager.php b/includes/user/UserOptionsManager.php index 8e8610e27adc..a1bf5dcb20ae 100644 --- a/includes/user/UserOptionsManager.php +++ b/includes/user/UserOptionsManager.php @@ -43,6 +43,9 @@ use Wikimedia\Rdbms\ILoadBalancer; */ class UserOptionsManager extends UserOptionsLookup { + /** + * @internal For use by ServiceWiring + */ public const CONSTRUCTOR_OPTIONS = [ 'HiddenPrefs' ]; |