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:
authorThomas Steur <thomas.steur@gmail.com>2013-11-11 04:25:16 +0400
committerThomas Steur <thomas.steur@gmail.com>2013-11-11 04:25:16 +0400
commitb8fa99edb924c26f2789ca10b0aff3b52f73641e (patch)
tree378cd30eea950b24226c980a58b798583b96377d /plugins/CoreConsole
parent3a2bfb0e865655f45a54fb83d05e0656b001043b (diff)
refs #4241 moving CoreConsole commands into subdirectory
Diffstat (limited to 'plugins/CoreConsole')
-rw-r--r--plugins/CoreConsole/Commands/CodeCoverage.php (renamed from plugins/CoreConsole/CodeCoverage.php)2
-rw-r--r--plugins/CoreConsole/Commands/GenerateApi.php (renamed from plugins/CoreConsole/GenerateApi.php)2
-rw-r--r--plugins/CoreConsole/Commands/GenerateController.php (renamed from plugins/CoreConsole/GenerateController.php)2
-rw-r--r--plugins/CoreConsole/Commands/GeneratePlugin.php (renamed from plugins/CoreConsole/GeneratePlugin.php)2
-rw-r--r--plugins/CoreConsole/Commands/GeneratePluginBase.php (renamed from plugins/CoreConsole/GeneratePluginBase.php)2
-rw-r--r--plugins/CoreConsole/Commands/GenerateSettings.php (renamed from plugins/CoreConsole/GenerateSettings.php)2
-rw-r--r--plugins/CoreConsole/Commands/GenerateTest.php (renamed from plugins/CoreConsole/GenerateTest.php)2
-rw-r--r--plugins/CoreConsole/Commands/GenerateVisualizationPlugin.php (renamed from plugins/CoreConsole/GenerateVisualizationPlugin.php)2
-rw-r--r--plugins/CoreConsole/Commands/GitCommit.php (renamed from plugins/CoreConsole/GitCommit.php)2
-rw-r--r--plugins/CoreConsole/Commands/GitPull.php (renamed from plugins/CoreConsole/GitPull.php)2
-rw-r--r--plugins/CoreConsole/Commands/GitPush.php (renamed from plugins/CoreConsole/GitPush.php)2
-rw-r--r--plugins/CoreConsole/Commands/RunTests.php (renamed from plugins/CoreConsole/RunTests.php)2
-rw-r--r--plugins/CoreConsole/Commands/WatchLog.php (renamed from plugins/CoreConsole/WatchLog.php)2
-rw-r--r--plugins/CoreConsole/CoreConsole.php24
14 files changed, 25 insertions, 25 deletions
diff --git a/plugins/CoreConsole/CodeCoverage.php b/plugins/CoreConsole/Commands/CodeCoverage.php
index f87c62b060..ba262a438b 100644
--- a/plugins/CoreConsole/CodeCoverage.php
+++ b/plugins/CoreConsole/Commands/CodeCoverage.php
@@ -9,7 +9,7 @@
* @package CoreConsole
*/
-namespace Piwik\Plugins\CoreConsole;
+namespace Piwik\Plugins\CoreConsole\Commands;
use Piwik\Plugin\ConsoleCommand;
use Symfony\Component\Console\Input\ArrayInput;
diff --git a/plugins/CoreConsole/GenerateApi.php b/plugins/CoreConsole/Commands/GenerateApi.php
index 0b6fb71f91..6a781abce3 100644
--- a/plugins/CoreConsole/GenerateApi.php
+++ b/plugins/CoreConsole/Commands/GenerateApi.php
@@ -9,7 +9,7 @@
* @package CoreConsole
*/
-namespace Piwik\Plugins\CoreConsole;
+namespace Piwik\Plugins\CoreConsole\Commands;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
diff --git a/plugins/CoreConsole/GenerateController.php b/plugins/CoreConsole/Commands/GenerateController.php
index 0974d0ab6f..7540c96dcc 100644
--- a/plugins/CoreConsole/GenerateController.php
+++ b/plugins/CoreConsole/Commands/GenerateController.php
@@ -9,7 +9,7 @@
* @package CoreConsole
*/
-namespace Piwik\Plugins\CoreConsole;
+namespace Piwik\Plugins\CoreConsole\Commands;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
diff --git a/plugins/CoreConsole/GeneratePlugin.php b/plugins/CoreConsole/Commands/GeneratePlugin.php
index fe69a2f632..2dcfe172f4 100644
--- a/plugins/CoreConsole/GeneratePlugin.php
+++ b/plugins/CoreConsole/Commands/GeneratePlugin.php
@@ -9,7 +9,7 @@
* @package CoreConsole
*/
-namespace Piwik\Plugins\CoreConsole;
+namespace Piwik\Plugins\CoreConsole\Commands;
use Piwik\Filesystem;
diff --git a/plugins/CoreConsole/GeneratePluginBase.php b/plugins/CoreConsole/Commands/GeneratePluginBase.php
index 08c40bb6dd..a6551e121c 100644
--- a/plugins/CoreConsole/GeneratePluginBase.php
+++ b/plugins/CoreConsole/Commands/GeneratePluginBase.php
@@ -9,7 +9,7 @@
* @package CoreConsole
*/
-namespace Piwik\Plugins\CoreConsole;
+namespace Piwik\Plugins\CoreConsole\Commands;
use Piwik\Filesystem;
diff --git a/plugins/CoreConsole/GenerateSettings.php b/plugins/CoreConsole/Commands/GenerateSettings.php
index 89e5c17336..8a024164ea 100644
--- a/plugins/CoreConsole/GenerateSettings.php
+++ b/plugins/CoreConsole/Commands/GenerateSettings.php
@@ -9,7 +9,7 @@
* @package CoreConsole
*/
-namespace Piwik\Plugins\CoreConsole;
+namespace Piwik\Plugins\CoreConsole\Commands;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
diff --git a/plugins/CoreConsole/GenerateTest.php b/plugins/CoreConsole/Commands/GenerateTest.php
index 6049f38fb0..2bc02767ae 100644
--- a/plugins/CoreConsole/GenerateTest.php
+++ b/plugins/CoreConsole/Commands/GenerateTest.php
@@ -9,7 +9,7 @@
* @package CoreConsole
*/
-namespace Piwik\Plugins\CoreConsole;
+namespace Piwik\Plugins\CoreConsole\Commands;
use Piwik\Common;
use Symfony\Component\Console\Input\InputInterface;
diff --git a/plugins/CoreConsole/GenerateVisualizationPlugin.php b/plugins/CoreConsole/Commands/GenerateVisualizationPlugin.php
index 92d5505eec..d18388c6fb 100644
--- a/plugins/CoreConsole/GenerateVisualizationPlugin.php
+++ b/plugins/CoreConsole/Commands/GenerateVisualizationPlugin.php
@@ -9,7 +9,7 @@
* @package CoreConsole
*/
-namespace Piwik\Plugins\CoreConsole;
+namespace Piwik\Plugins\CoreConsole\Commands;
use Symfony\Component\Console\Input\ArrayInput;
diff --git a/plugins/CoreConsole/GitCommit.php b/plugins/CoreConsole/Commands/GitCommit.php
index 0f02655933..32ff24bade 100644
--- a/plugins/CoreConsole/GitCommit.php
+++ b/plugins/CoreConsole/Commands/GitCommit.php
@@ -9,7 +9,7 @@
* @package CoreConsole
*/
-namespace Piwik\Plugins\CoreConsole;
+namespace Piwik\Plugins\CoreConsole\Commands;
use Piwik\Plugin\ConsoleCommand;
use Symfony\Component\Console\Input\InputArgument;
diff --git a/plugins/CoreConsole/GitPull.php b/plugins/CoreConsole/Commands/GitPull.php
index f519f9c149..4dd60b55e8 100644
--- a/plugins/CoreConsole/GitPull.php
+++ b/plugins/CoreConsole/Commands/GitPull.php
@@ -9,7 +9,7 @@
* @package CoreConsole
*/
-namespace Piwik\Plugins\CoreConsole;
+namespace Piwik\Plugins\CoreConsole\Commands;
use Piwik\Plugin\ConsoleCommand;
use Symfony\Component\Console\Input\InputArgument;
diff --git a/plugins/CoreConsole/GitPush.php b/plugins/CoreConsole/Commands/GitPush.php
index 7d625b348d..628da53bb1 100644
--- a/plugins/CoreConsole/GitPush.php
+++ b/plugins/CoreConsole/Commands/GitPush.php
@@ -9,7 +9,7 @@
* @package CoreConsole
*/
-namespace Piwik\Plugins\CoreConsole;
+namespace Piwik\Plugins\CoreConsole\Commands;
use Piwik\Plugin\ConsoleCommand;
use Symfony\Component\Console\Input\InputArgument;
diff --git a/plugins/CoreConsole/RunTests.php b/plugins/CoreConsole/Commands/RunTests.php
index 237e71f8ef..1b8f1e361f 100644
--- a/plugins/CoreConsole/RunTests.php
+++ b/plugins/CoreConsole/Commands/RunTests.php
@@ -9,7 +9,7 @@
* @package CoreConsole
*/
-namespace Piwik\Plugins\CoreConsole;
+namespace Piwik\Plugins\CoreConsole\Commands;
use Piwik\Plugin\ConsoleCommand;
use Symfony\Component\Console\Input\InputArgument;
diff --git a/plugins/CoreConsole/WatchLog.php b/plugins/CoreConsole/Commands/WatchLog.php
index 1a51d250ae..72bcc77111 100644
--- a/plugins/CoreConsole/WatchLog.php
+++ b/plugins/CoreConsole/Commands/WatchLog.php
@@ -9,7 +9,7 @@
* @package CoreConsole
*/
-namespace Piwik\Plugins\CoreConsole;
+namespace Piwik\Plugins\CoreConsole\Commands;
use Piwik\Plugin\ConsoleCommand;
use Symfony\Component\Console\Input\InputInterface;
diff --git a/plugins/CoreConsole/CoreConsole.php b/plugins/CoreConsole/CoreConsole.php
index ba485d20fc..16e7dd5729 100644
--- a/plugins/CoreConsole/CoreConsole.php
+++ b/plugins/CoreConsole/CoreConsole.php
@@ -27,17 +27,17 @@ class CoreConsole extends \Piwik\Plugin
public function addConsoleCommands(&$commands)
{
- $commands[] = 'Piwik\Plugins\CoreConsole\CodeCoverage';
- $commands[] = 'Piwik\Plugins\CoreConsole\GenerateApi';
- $commands[] = 'Piwik\Plugins\CoreConsole\GenerateController';
- $commands[] = 'Piwik\Plugins\CoreConsole\GeneratePlugin';
- $commands[] = 'Piwik\Plugins\CoreConsole\GenerateSettings';
- $commands[] = 'Piwik\Plugins\CoreConsole\GenerateVisualizationPlugin';
- $commands[] = 'Piwik\Plugins\CoreConsole\GitCommit';
- $commands[] = 'Piwik\Plugins\CoreConsole\GitPull';
- $commands[] = 'Piwik\Plugins\CoreConsole\GitPush';
- $commands[] = 'Piwik\Plugins\CoreConsole\RunTests';
- $commands[] = 'Piwik\Plugins\CoreConsole\WatchLog';
- $commands[] = 'Piwik\Plugins\CoreConsole\GenerateTest';
+ $commands[] = 'Piwik\Plugins\CoreConsole\Commands\CodeCoverage';
+ $commands[] = 'Piwik\Plugins\CoreConsole\Commands\GenerateApi';
+ $commands[] = 'Piwik\Plugins\CoreConsole\Commands\GenerateController';
+ $commands[] = 'Piwik\Plugins\CoreConsole\Commands\GeneratePlugin';
+ $commands[] = 'Piwik\Plugins\CoreConsole\Commands\GenerateSettings';
+ $commands[] = 'Piwik\Plugins\CoreConsole\Commands\GenerateVisualizationPlugin';
+ $commands[] = 'Piwik\Plugins\CoreConsole\Commands\GitCommit';
+ $commands[] = 'Piwik\Plugins\CoreConsole\Commands\GitPull';
+ $commands[] = 'Piwik\Plugins\CoreConsole\Commands\GitPush';
+ $commands[] = 'Piwik\Plugins\CoreConsole\Commands\RunTests';
+ $commands[] = 'Piwik\Plugins\CoreConsole\Commands\WatchLog';
+ $commands[] = 'Piwik\Plugins\CoreConsole\Commands\GenerateTest';
}
} \ No newline at end of file