Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiosmosis <benaka@piwik.pro>2014-11-08 09:00:44 +0300
committerdiosmosis <benaka@piwik.pro>2014-11-08 09:00:44 +0300
commit43ed4c23161083f8c57fdda09cdf398d07567cdf (patch)
treeb8af61f5f5f0378d00e52e36f7c3bc47533e5fb5 /core/Plugin/AggregatedMetric.php
parent3435e95ce3f0fa92b1b4616f766e7b017e936c7c (diff)
Forgot to add files in previous commit and document two more pieces of code.
Diffstat (limited to 'core/Plugin/AggregatedMetric.php')
-rw-r--r--core/Plugin/AggregatedMetric.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/Plugin/AggregatedMetric.php b/core/Plugin/AggregatedMetric.php
index 89851d5187..7df1535727 100644
--- a/core/Plugin/AggregatedMetric.php
+++ b/core/Plugin/AggregatedMetric.php
@@ -10,9 +10,11 @@ namespace Piwik\Plugin;
use Piwik\DataTable\Row;
/**
- * TODO
+ * Base type for metric metadata classes that describe aggregated metrics. These metrics are
+ * computed in the backend data store and are aggregated in PHP when Piwik archives period reports.
*
- * TODO: note that this will be filled out in another issue
+ * Note: This class is a placeholder. It will be filled out at a later date. Right now, only
+ * processed metrics can be defined this way.
*/
abstract class AggregatedMetric extends Metric
{