From 6408088e25b2e4dd4fc82790fbd7523ae9a3ac78 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Mon, 22 Apr 2013 13:27:50 -0700 Subject: [PATCH] StatCounter doc tweaks. Change-Id: I8882e142170841c70cb620e1ea0246facc30f046 --- includes/StatCounter.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/includes/StatCounter.php b/includes/StatCounter.php index 23a4e2bf18..374d5caf07 100644 --- a/includes/StatCounter.php +++ b/includes/StatCounter.php @@ -26,6 +26,7 @@ * * @file * @ingroup StatCounter + * @author Aaron Schulz */ /** @@ -85,6 +86,10 @@ class StatCounter { $this->deltas = array(); } + /** + * @param array $deltas + * @return void + */ protected function sendDeltasUDP( array $deltas ) { global $wgUDPProfilerHost, $wgUDPProfilerPort, $wgAggregateStatsID; @@ -128,6 +133,10 @@ class StatCounter { } } + /** + * @param array $deltas + * @return void + */ protected function sendDeltasMemc( array $deltas ) { global $wgMemc; -- 2.20.1