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
path: root/core/View
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/View
parentb9aeeca62578258f6d149cad5c604fdcd6da349f (diff)
Removed unused imports in core/ and plugins/
using phpstorm optimize imports feature
Diffstat (limited to 'core/View')
-rw-r--r--core/View/RenderTokenParser.php7
-rw-r--r--core/View/UIControl.php2
2 files changed, 4 insertions, 5 deletions
diff --git a/core/View/RenderTokenParser.php b/core/View/RenderTokenParser.php
index ddb21b9371..6acd3a8fe0 100644
--- a/core/View/RenderTokenParser.php
+++ b/core/View/RenderTokenParser.php
@@ -8,12 +8,11 @@
*/
namespace Piwik\View;
-use Twig_Token;
-use Twig_TokenParser;
-use Twig_Node_Expression_MethodCall;
use Twig_Node_Expression_Array;
+use Twig_Node_Expression_MethodCall;
use Twig_Node_Include;
-use Exception;
+use Twig_Token;
+use Twig_TokenParser;
/**
* Defines a new Twig tag that will render a Piwik View.
diff --git a/core/View/UIControl.php b/core/View/UIControl.php
index 467c5615f3..d0032ade07 100644
--- a/core/View/UIControl.php
+++ b/core/View/UIControl.php
@@ -8,8 +8,8 @@
*/
namespace Piwik\View;
-use Piwik\View;
use Exception;
+use Piwik\View;
/**
* Base type of UI controls.