diff options
author | jenkins-bot <jenkins-bot@gerrit.wikimedia.org> | 2025-04-04 16:00:44 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@wikimedia.org> | 2025-04-04 16:00:44 +0000 |
commit | 81cca6b56343bdcb7625b4ddc269a03ed58cdeb1 (patch) | |
tree | 06d84381b4c40a9110b6ce931049f11faf0482ef | |
parent | 95485727e1d333be0995ff8b48b5f6e5593918b2 (diff) | |
parent | a0c4d4fec8b1d8ad0fc7be3f7151b02d4f31130b (diff) | |
download | mediawikicore-81cca6b56343bdcb7625b4ddc269a03ed58cdeb1.tar.gz mediawikicore-81cca6b56343bdcb7625b4ddc269a03ed58cdeb1.zip |
Merge "Add @since tags to all ParserOptions::newFrom… methods"
-rw-r--r-- | includes/parser/ParserOptions.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/includes/parser/ParserOptions.php b/includes/parser/ParserOptions.php index e364bf0ae2b0..971442f2c486 100644 --- a/includes/parser/ParserOptions.php +++ b/includes/parser/ParserOptions.php @@ -1099,6 +1099,7 @@ class ParserOptions { * Get a ParserOptions object from a given user. * Language will be taken from $wgLang. * + * @since 1.13 * @param UserIdentity $user * @return ParserOptions */ @@ -1109,6 +1110,7 @@ class ParserOptions { /** * Get a ParserOptions object from a given user and language * + * @since 1.19 * @param UserIdentity $user * @param Language $lang * @return ParserOptions @@ -1120,6 +1122,7 @@ class ParserOptions { /** * Get a ParserOptions object from a IContextSource object * + * @since 1.19 * @param IContextSource $context * @return ParserOptions */ |