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:
authorThomas Steur <thomas.steur@gmail.com>2015-10-19 14:50:49 +0300
committerThomas Steur <thomas.steur@gmail.com>2015-10-19 14:50:49 +0300
commitfda46f16327d2af89b7450c729dbbcf7d0c322f0 (patch)
tree7f4cf920e914a548a6198fbce120fc8769c7d878 /plugins/ExamplePlugin
parentc602784904f6e9e86459817cf6fffc6ab0b52210 (diff)
fix namespace is wrong when generating an update for a plugin
Diffstat (limited to 'plugins/ExamplePlugin')
-rw-r--r--plugins/ExamplePlugin/Updates/0.0.2.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/ExamplePlugin/Updates/0.0.2.php b/plugins/ExamplePlugin/Updates/0.0.2.php
index 6ab86893fe..b958d91df0 100644
--- a/plugins/ExamplePlugin/Updates/0.0.2.php
+++ b/plugins/ExamplePlugin/Updates/0.0.2.php
@@ -7,16 +7,16 @@
*
*/
-namespace Piwik\Plugins\ExamplePlugin;
+namespace Piwik\Plugins\ExamplePlugin\Updates;
use Piwik\Common;
use Piwik\Updater;
-use Piwik\Updates;
+use Piwik\Updates as PiwikUpdates;
/**
* Update for version 0.0.2.
*/
-class Updates_0_0_2 extends Updates
+class Updates_0_0_2 extends PiwikUpdates
{
/**