From: Aaron Schulz Date: Tue, 10 Mar 2015 19:26:24 +0000 (-0700) Subject: Mention metrics in IContextSource docs X-Git-Tag: 1.31.0-rc.0~12132 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=353659085c527e12f8c66ce20753844e780583f5;p=lhc%2Fweb%2Fwiklou.git Mention metrics in IContextSource docs Change-Id: I9b654a12578758471978ffd1e1ae20476aeeaa0d --- diff --git a/includes/context/IContextSource.php b/includes/context/IContextSource.php index 66df7fc659..713c5cbf19 100644 --- a/includes/context/IContextSource.php +++ b/includes/context/IContextSource.php @@ -29,7 +29,8 @@ * The contained objects include: * a) Key objects that depend (for construction/loading) on the HTTP request * b) Key objects used for response building and PHP session state control - * c) The site configuration object + * c) Performance metric deltas accumulated from request execution + * d) The site configuration object * All of the objects are useful for the vast majority of MediaWiki requests. * The site configuration object is included on grounds of extreme * utility, even though it should not actually depend on the web request. @@ -40,7 +41,8 @@ * c) Primary MediaWiki output builder objects (OutputPage, user skin object) * d) The language object for the user/request * e) The title and wiki page objects requested via URL (if any) - * f) The site configuration object + * f) Performance metric deltas accumulated from request execution + * g) The site configuration object * * This class is not intended as a service-locator nor a service singleton. * Objects that only depend on site configuration do not belong here (aside