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/DBStats
parent73b20945c89c2c9c15873d4a853dc6c4542134f5 (diff)
fixed/added some missing doc blocks
Diffstat (limited to 'plugins/DBStats')
-rw-r--r--plugins/DBStats/DBStats.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/plugins/DBStats/DBStats.php b/plugins/DBStats/DBStats.php
index 05f72ada33..744e36bbb7 100644
--- a/plugins/DBStats/DBStats.php
+++ b/plugins/DBStats/DBStats.php
@@ -17,6 +17,9 @@ class Piwik_DBStats extends Piwik_Plugin
{
const TIME_OF_LAST_TASK_RUN_OPTION = 'dbstats_time_of_last_cache_task_run';
+ /**
+ * @see Piwik_Plugin::getInformation
+ */
public function getInformation()
{
return array(
@@ -27,7 +30,10 @@ class Piwik_DBStats extends Piwik_Plugin
);
}
- function getListHooksRegistered()
+ /**
+ * @see Piwik_Plugin::getListHooksRegistered
+ */
+ public function getListHooksRegistered()
{
return array(
'AssetManager.getCssFiles' => 'getCssFiles',