Merge "Move up devunt's name to Developers"
[lhc/web/wiklou.git] / includes / context / ContextSource.php
index df5f71c..829dd73 100644 (file)
@@ -18,6 +18,7 @@
  * @author Happy-melon
  * @file
  */
+use Liuggio\StatsdClient\Factory\StatsdDataFactory;
 
 /**
  * The simplest way of implementing IContextSource is to hold a RequestContext as a
@@ -165,8 +166,10 @@ abstract class ContextSource implements IContextSource {
        /**
         * Get the Stats object
         *
+        * @deprecated since 1.27 use a StatsdDataFactory from MediaWikiServices (preferably injected)
+        *
         * @since 1.25
-        * @return BufferingStatsdDataFactory
+        * @return StatsdDataFactory
         */
        public function getStats() {
                return $this->getContext()->getStats();
@@ -183,7 +186,7 @@ abstract class ContextSource implements IContextSource {
        public function msg( /* $args */ ) {
                $args = func_get_args();
 
-               return call_user_func_array( array( $this->getContext(), 'msg' ), $args );
+               return call_user_func_array( [ $this->getContext(), 'msg' ], $args );
        }
 
        /**