From 064752f1eb08440cd15c2e775734f1871cd8e95c Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Sat, 24 Jun 2017 11:36:24 +0200 Subject: [PATCH] Get rid of Flarum\Debug namespace --- framework/core/src/Console/Server.php | 4 ++-- .../src/{Debug => Foundation}/Console/CacheClearCommand.php | 2 +- .../core/src/{Debug => Foundation}/Console/InfoCommand.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename framework/core/src/{Debug => Foundation}/Console/CacheClearCommand.php (97%) rename framework/core/src/{Debug => Foundation}/Console/InfoCommand.php (98%) diff --git a/framework/core/src/Console/Server.php b/framework/core/src/Console/Server.php index d18533e42..45366ec83 100644 --- a/framework/core/src/Console/Server.php +++ b/framework/core/src/Console/Server.php @@ -12,8 +12,8 @@ namespace Flarum\Console; use Flarum\Database\Console\GenerateMigrationCommand; -use Flarum\Debug\Console\CacheClearCommand; -use Flarum\Debug\Console\InfoCommand; +use Flarum\Foundation\Console\CacheClearCommand; +use Flarum\Foundation\Console\InfoCommand; use Flarum\Foundation\AbstractServer; use Flarum\Install\Console\InstallCommand; use Flarum\Database\Console\MigrateCommand; diff --git a/framework/core/src/Debug/Console/CacheClearCommand.php b/framework/core/src/Foundation/Console/CacheClearCommand.php similarity index 97% rename from framework/core/src/Debug/Console/CacheClearCommand.php rename to framework/core/src/Foundation/Console/CacheClearCommand.php index 76b66b3b0..f669205bd 100644 --- a/framework/core/src/Debug/Console/CacheClearCommand.php +++ b/framework/core/src/Foundation/Console/CacheClearCommand.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Flarum\Debug\Console; +namespace Flarum\Foundation\Console; use Flarum\Admin\Frontend as AdminWebApp; use Flarum\Console\AbstractCommand; diff --git a/framework/core/src/Debug/Console/InfoCommand.php b/framework/core/src/Foundation/Console/InfoCommand.php similarity index 98% rename from framework/core/src/Debug/Console/InfoCommand.php rename to framework/core/src/Foundation/Console/InfoCommand.php index e14fb8468..1a467051a 100644 --- a/framework/core/src/Debug/Console/InfoCommand.php +++ b/framework/core/src/Foundation/Console/InfoCommand.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Flarum\Debug\Console; +namespace Flarum\Foundation\Console; use Flarum\Console\AbstractCommand; use Flarum\Extension\ExtensionManager;