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:
authorMichał Gaździk <m.gazdzik@clearcode.cc>2014-10-27 12:52:46 +0300
committerMichał Gaździk <m.gazdzik@clearcode.cc>2014-10-27 12:52:46 +0300
commite91bd7a99137527c89e094f3f872593b2e344d4c (patch)
tree678c4a7ae404b307b0fdf307abb08620c1a660b6 /plugins/ExamplePlugin/Archiver.php
parentba3673483f36f65f9623bb4427848289f1ceed77 (diff)
fixed last typo
Diffstat (limited to 'plugins/ExamplePlugin/Archiver.php')
-rw-r--r--plugins/ExamplePlugin/Archiver.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/ExamplePlugin/Archiver.php b/plugins/ExamplePlugin/Archiver.php
index e3e409ed77..d5c4ddcdcd 100644
--- a/plugins/ExamplePlugin/Archiver.php
+++ b/plugins/ExamplePlugin/Archiver.php
@@ -17,7 +17,7 @@ class Archiver extends \Piwik\Plugin\Archiver
{
/**
* inside this method you can implement your LogAggreagator usage
- * to process daily reports, this one uses idvisitor to
+ * to process daily reports, this one uses idvisitor to group results.
*
* $visitorMetrics = $this
* ->getLogAggregator()
@@ -33,10 +33,11 @@ class Archiver extends \Piwik\Plugin\Archiver
/**
* Inside this method you can simply point daily records
* to be summed. This work for most cases.
- * However if needed, also custome queries can be implemented
+ * However if needed, also custom queries can be implemented
* for periods to achieve more acurrate results.
+ *
* $this->getProcessor()->aggregateDataTableRecords(self::EXAMPLEPLUGIN_USERS_RECORD);
*/
}
-} \ No newline at end of file
+}