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:
authormattab <matthieu.aubry@gmail.com>2014-05-09 10:37:09 +0400
committermattab <matthieu.aubry@gmail.com>2014-05-09 10:37:09 +0400
commit05ad779cfd56f04e579173b68742a62ce795596c (patch)
tree6919b8f361b97e6eecec77fb5b771e3d68c17595 /plugins/CustomVariables
parentb9aeeca62578258f6d149cad5c604fdcd6da349f (diff)
Removed unused imports in core/ and plugins/
using phpstorm optimize imports feature
Diffstat (limited to 'plugins/CustomVariables')
-rw-r--r--plugins/CustomVariables/Archiver.php2
-rw-r--r--plugins/CustomVariables/Commands/SetNumberOfCustomVariables.php2
-rw-r--r--plugins/CustomVariables/Controller.php1
-rw-r--r--plugins/CustomVariables/CustomVariables.php2
-rw-r--r--plugins/CustomVariables/tests/Commands/InfoTest.php2
-rw-r--r--plugins/CustomVariables/tests/Commands/SetNumberOfCustomVariablesTest.php2
-rw-r--r--plugins/CustomVariables/tests/CustomVariablesIntegrationTest.php2
7 files changed, 5 insertions, 8 deletions
diff --git a/plugins/CustomVariables/Archiver.php b/plugins/CustomVariables/Archiver.php
index d7ae1ac015..1afcdef098 100644
--- a/plugins/CustomVariables/Archiver.php
+++ b/plugins/CustomVariables/Archiver.php
@@ -13,8 +13,8 @@ use Piwik\Config;
use Piwik\DataAccess\LogAggregator;
use Piwik\DataArray;
use Piwik\Metrics;
-use Piwik\Tracker;
use Piwik\Tracker\GoalManager;
+use Piwik\Tracker;
require_once PIWIK_INCLUDE_PATH . '/libs/PiwikTracker/PiwikTracker.php';
diff --git a/plugins/CustomVariables/Commands/SetNumberOfCustomVariables.php b/plugins/CustomVariables/Commands/SetNumberOfCustomVariables.php
index 0f5419029c..ed4ae6bb21 100644
--- a/plugins/CustomVariables/Commands/SetNumberOfCustomVariables.php
+++ b/plugins/CustomVariables/Commands/SetNumberOfCustomVariables.php
@@ -10,8 +10,8 @@
namespace Piwik\Plugins\CustomVariables\Commands;
use Piwik\Plugin\ConsoleCommand;
-use Piwik\Tracker\Cache;
use Piwik\Plugins\CustomVariables\Model;
+use Piwik\Tracker\Cache;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
diff --git a/plugins/CustomVariables/Controller.php b/plugins/CustomVariables/Controller.php
index c673d51605..01b48bbac7 100644
--- a/plugins/CustomVariables/Controller.php
+++ b/plugins/CustomVariables/Controller.php
@@ -10,7 +10,6 @@ namespace Piwik\Plugins\CustomVariables;
use Piwik\Piwik;
use Piwik\View;
-use Piwik\ViewDataTable\Factory;
/**
*/
diff --git a/plugins/CustomVariables/CustomVariables.php b/plugins/CustomVariables/CustomVariables.php
index 870c5f5340..8efed3ce7b 100644
--- a/plugins/CustomVariables/CustomVariables.php
+++ b/plugins/CustomVariables/CustomVariables.php
@@ -12,9 +12,9 @@ use Piwik\ArchiveProcessor;
use Piwik\Menu\MenuMain;
use Piwik\Piwik;
use Piwik\Plugin\ViewDataTable;
+use Piwik\Tracker\Cache;
use Piwik\Tracker;
use Piwik\WidgetsList;
-use Piwik\Tracker\Cache;
/**
*/
diff --git a/plugins/CustomVariables/tests/Commands/InfoTest.php b/plugins/CustomVariables/tests/Commands/InfoTest.php
index 586fbc09a8..d8bc90b88e 100644
--- a/plugins/CustomVariables/tests/Commands/InfoTest.php
+++ b/plugins/CustomVariables/tests/Commands/InfoTest.php
@@ -12,10 +12,10 @@ namespace Piwik\Plugins\CustomVariables\tests\Commands;
use Piwik\Plugins\CustomVariables\Commands\Info;
use Piwik\Plugins\CustomVariables\Model;
use Symfony\Component\Console\Application;
-use Symfony\Component\Console\Tester\CommandTester;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
+use Symfony\Component\Console\Tester\CommandTester;
/**
* @group CustomVariables
diff --git a/plugins/CustomVariables/tests/Commands/SetNumberOfCustomVariablesTest.php b/plugins/CustomVariables/tests/Commands/SetNumberOfCustomVariablesTest.php
index 0fbbb9d299..a883f09d1f 100644
--- a/plugins/CustomVariables/tests/Commands/SetNumberOfCustomVariablesTest.php
+++ b/plugins/CustomVariables/tests/Commands/SetNumberOfCustomVariablesTest.php
@@ -12,10 +12,10 @@ namespace Piwik\Plugins\CustomVariables\tests\Commands;
use Piwik\Plugins\CustomVariables\Commands\SetNumberOfCustomVariables;
use Piwik\Plugins\CustomVariables\CustomVariables;
use Symfony\Component\Console\Application;
-use Symfony\Component\Console\Tester\CommandTester;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
+use Symfony\Component\Console\Tester\CommandTester;
/**
* @group CustomVariables
diff --git a/plugins/CustomVariables/tests/CustomVariablesIntegrationTest.php b/plugins/CustomVariables/tests/CustomVariablesIntegrationTest.php
index fd4cc3cc1c..7559857a56 100644
--- a/plugins/CustomVariables/tests/CustomVariablesIntegrationTest.php
+++ b/plugins/CustomVariables/tests/CustomVariablesIntegrationTest.php
@@ -7,8 +7,6 @@
*/
namespace Piwik\Plugins\CustomVariables\tests;
-use Piwik\Plugins\CustomVariables\CustomVariables;
-use Piwik\Tracker\Cache;
/**
* @group CustomVariables