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:
-rw-r--r--core/Development.php2
-rw-r--r--core/Plugin/Report.php2
-rwxr-xr-xtests/PHPUnit/IntegrationTestCase.php1
3 files changed, 3 insertions, 2 deletions
diff --git a/core/Development.php b/core/Development.php
index 60d3dcd81c..a2dd44c673 100644
--- a/core/Development.php
+++ b/core/Development.php
@@ -9,7 +9,7 @@
namespace Piwik;
-use \Exception;
+use Exception;
/**
* Development related checks and tools. You can enable/disable development using `./console development:enable` and
diff --git a/core/Plugin/Report.php b/core/Plugin/Report.php
index 1db9b77f07..69f4c17953 100644
--- a/core/Plugin/Report.php
+++ b/core/Plugin/Report.php
@@ -18,7 +18,7 @@ use Piwik\Plugins\CoreVisualizations\Visualizations\HtmlTable;
use Piwik\Translate;
use Piwik\WidgetsList;
use Piwik\ViewDataTable\Factory as ViewDataTableFactory;
-use \Exception;
+use Exception;
/**
* Defines a new report. This class contains all information a report defines except the corresponding API method which
diff --git a/tests/PHPUnit/IntegrationTestCase.php b/tests/PHPUnit/IntegrationTestCase.php
index b255b4f189..a7a6b35f1b 100755
--- a/tests/PHPUnit/IntegrationTestCase.php
+++ b/tests/PHPUnit/IntegrationTestCase.php
@@ -7,6 +7,7 @@
*/
namespace Piwik\Tests;
+use Exception;
use Piwik\API\DocumentationGenerator;
use Piwik\API\Proxy;
use Piwik\API\Request;