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:
authorsgiehl <stefan@piwik.org>2013-07-12 19:24:28 +0400
committersgiehl <stefan@piwik.org>2013-07-12 19:24:28 +0400
commit91ea06716a7ba1250099686c2cdb824da526de56 (patch)
treede107269d0562a895429cbdd0f571c9fc7296216 /plugins/VisitTime
parent73b20945c89c2c9c15873d4a853dc6c4542134f5 (diff)
fixed/added some missing doc blocks
Diffstat (limited to 'plugins/VisitTime')
-rw-r--r--plugins/VisitTime/VisitTime.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/plugins/VisitTime/VisitTime.php b/plugins/VisitTime/VisitTime.php
index 39934563e5..c654dcfa7f 100644
--- a/plugins/VisitTime/VisitTime.php
+++ b/plugins/VisitTime/VisitTime.php
@@ -15,6 +15,9 @@
*/
class Piwik_VisitTime extends Piwik_Plugin
{
+ /**
+ * @see Piwik_Plugin::getInformation
+ */
public function getInformation()
{
$info = array(
@@ -26,7 +29,10 @@ class Piwik_VisitTime extends Piwik_Plugin
return $info;
}
- function getListHooksRegistered()
+ /**
+ * @see Piwik_Plugin::getListHooksRegistered
+ */
+ public function getListHooksRegistered()
{
$hooks = array(
'ArchiveProcessing_Day.compute' => 'archiveDay',