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:
Diffstat (limited to 'core/EventDispatcher.php')
-rw-r--r--core/EventDispatcher.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/EventDispatcher.php b/core/EventDispatcher.php
index ce0815c6ba..d9d26b4377 100644
--- a/core/EventDispatcher.php
+++ b/core/EventDispatcher.php
@@ -201,12 +201,14 @@ class EventDispatcher extends Singleton
}
/**
- * TODO
+ * Returns the Plugin\Manager instance used by the event dispatcher.
+ *
+ * @return Plugin\Manager
*/
private function getPluginManager()
{
if ($this->pluginManager === null) {
- $this->pluginManager = \Piwik\Plugin\Manager::getInstance();
+ $this->pluginManager = Plugin\Manager::getInstance();
}
return $this->pluginManager;
}