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:
authorMatthieu Napoli <matthieu@mnapoli.fr>2015-01-15 01:58:17 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2015-01-15 01:58:17 +0300
commit18ff11d26e87d1937e2fa32469791063e1e3fe67 (patch)
tree2a8a4ba4c5b7998cdd0e7b1b4c783953c4c06f43 /tests/resources
parente568870199a6ba7723b47a5dc53b56338c9a18eb (diff)
Move test classes into namespace
Diffstat (limited to 'tests/resources')
-rw-r--r--tests/resources/TestPluginLogClass.php19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/resources/TestPluginLogClass.php b/tests/resources/TestPluginLogClass.php
deleted file mode 100644
index 3a95fe0cfb..0000000000
--- a/tests/resources/TestPluginLogClass.php
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-/**
- * Piwik - free/libre analytics platform
- *
- * @link http://piwik.org
- * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
- */
-
-namespace Piwik\Plugins\TestPlugin;
-
-use Piwik\Log;
-
-class TestLoggingUtility
-{
- public static function doLog($message)
- {
- Log::warning($message);
- }
-}