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/ExampleUI/ExampleUI.php
parent73b20945c89c2c9c15873d4a853dc6c4542134f5 (diff)
fixed/added some missing doc blocks
Diffstat (limited to 'plugins/ExampleUI/ExampleUI.php')
-rw-r--r--plugins/ExampleUI/ExampleUI.php11
1 files changed, 5 insertions, 6 deletions
diff --git a/plugins/ExampleUI/ExampleUI.php b/plugins/ExampleUI/ExampleUI.php
index 3bf23eefff..d695cfcd06 100644
--- a/plugins/ExampleUI/ExampleUI.php
+++ b/plugins/ExampleUI/ExampleUI.php
@@ -26,11 +26,7 @@
class Piwik_ExampleUI extends Piwik_Plugin
{
/**
- * Return information about this plugin.
- *
- * @see Piwik_Plugin
- *
- * @return array
+ * @see Piwik_Plugin::getInformation
*/
public function getInformation()
{
@@ -42,7 +38,10 @@ class Piwik_ExampleUI extends Piwik_Plugin
);
}
- function getListHooksRegistered()
+ /**
+ * @see Piwik_Plugin::getListHooksRegistered
+ */
+ public function getListHooksRegistered()
{
$hooks = array(
'Menu.add' => 'addMenus',