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:
authorBenaka Moorthi <benaka.moorthi@gmail.com>2013-09-26 15:38:49 +0400
committerBenaka Moorthi <benaka.moorthi@gmail.com>2013-09-26 15:38:49 +0400
commit4157032dbf90ff95fccacffd0ecf9962e47aa6e1 (patch)
tree24648e5797a08d48c3ede39a03f0315464df1291 /tests/resources
parent996262001a786f90a21a6074a3781ca1de78cee4 (diff)
Added tests and fixed bugs.
Diffstat (limited to 'tests/resources')
-rw-r--r--tests/resources/TestPluginLogClass.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/resources/TestPluginLogClass.php b/tests/resources/TestPluginLogClass.php
new file mode 100644
index 0000000000..090824c584
--- /dev/null
+++ b/tests/resources/TestPluginLogClass.php
@@ -0,0 +1,18 @@
+<?php
+/**
+ * Piwik - Open source web analytics
+ *
+ * @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);
+ }
+} \ No newline at end of file