Merge "Move up devunt's name to Developers"
[lhc/web/wiklou.git] / includes / context / DerivativeContext.php
index 09c3939..e77a058 100644 (file)
@@ -18,6 +18,8 @@
  * @author Daniel Friesen
  * @file
  */
+use Liuggio\StatsdClient\Factory\StatsdDataFactory;
+use MediaWiki\MediaWikiServices;
 
 /**
  * An IContextSource implementation which will inherit context from another source
@@ -68,9 +70,9 @@ class DerivativeContext extends ContextSource implements MutableContext {
        private $config;
 
        /**
-        * @var Stats
+        * @var Timing
         */
-       private $stats;
+       private $timing;
 
        /**
         * Constructor
@@ -105,13 +107,24 @@ class DerivativeContext extends ContextSource implements MutableContext {
        /**
         * Get the stats object
         *
-        * @return BufferingStatsdDataFactory
+        * @deprecated since 1.27 use a StatsdDataFactory from MediaWikiServices (preferably injected)
+        *
+        * @return StatsdDataFactory
         */
        public function getStats() {
-               if ( !is_null( $this->stats ) ) {
-                       return $this->stats;
+               return MediaWikiServices::getInstance()->getStatsdDataFactory();
+       }
+
+       /**
+        * Get the timing object
+        *
+        * @return Timing
+        */
+       public function getTiming() {
+               if ( !is_null( $this->timing ) ) {
+                       return $this->timing;
                } else {
-                       return $this->getContext()->getStats();
+                       return $this->getContext()->getTiming();
                }
        }