From 53317d179bcbde92d198bf4e64b2bb114dee2f80 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Sun, 26 Feb 2012 14:16:53 +0000 Subject: [PATCH] Added @since annotations --- includes/api/ApiBase.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/api/ApiBase.php b/includes/api/ApiBase.php index fbdf9716e9..461e2bc333 100644 --- a/includes/api/ApiBase.php +++ b/includes/api/ApiBase.php @@ -51,7 +51,9 @@ abstract class ApiBase extends ContextSource { const PARAM_MIN = 5; // Lowest value allowed for a parameter. Only applies if TYPE='integer' const PARAM_ALLOW_DUPLICATES = 6; // Boolean, do we allow the same value to be set more than once when ISMULTI=true const PARAM_DEPRECATED = 7; // Boolean, is the parameter deprecated (will show a warning) + /// @since 1.17 const PARAM_REQUIRED = 8; // Boolean, is the parameter required? + /// @since 1.17 const PARAM_RANGE_ENFORCE = 9; // Boolean, if MIN/MAX are set, enforce (die) these? Only applies if TYPE='integer' Use with extreme caution const LIMIT_BIG1 = 500; // Fast query, std user limit -- 2.20.1