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 /core/Console.php
parentb9aeeca62578258f6d149cad5c604fdcd6da349f (diff)
Removed unused imports in core/ and plugins/
using phpstorm optimize imports feature
Diffstat (limited to 'core/Console.php')
-rw-r--r--core/Console.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Console.php b/core/Console.php
index cdeb6a087d..6f32eb8f33 100644
--- a/core/Console.php
+++ b/core/Console.php
@@ -8,12 +8,12 @@
*/
namespace Piwik;
+use Piwik\Plugin\Manager as PluginManager;
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Input\ArgvInput;
-use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
-use Piwik\Plugin\Manager as PluginManager;
class Console extends Application
{