From 5ae2e9d232471449facbdc6bd3c287e3e2509adb 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 --- src/Console/Server.php | 4 ++-- src/{Debug => Foundation}/Console/CacheClearCommand.php | 2 +- src/{Debug => Foundation}/Console/InfoCommand.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename src/{Debug => Foundation}/Console/CacheClearCommand.php (97%) rename src/{Debug => Foundation}/Console/InfoCommand.php (98%) diff --git a/src/Console/Server.php b/src/Console/Server.php index d18533e42..45366ec83 100644 --- a/src/Console/Server.php +++ b/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/src/Debug/Console/CacheClearCommand.php b/src/Foundation/Console/CacheClearCommand.php similarity index 97% rename from src/Debug/Console/CacheClearCommand.php rename to src/Foundation/Console/CacheClearCommand.php index 76b66b3b0..f669205bd 100644 --- a/src/Debug/Console/CacheClearCommand.php +++ b/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/src/Debug/Console/InfoCommand.php b/src/Foundation/Console/InfoCommand.php similarity index 98% rename from src/Debug/Console/InfoCommand.php rename to src/Foundation/Console/InfoCommand.php index e14fb8468..1a467051a 100644 --- a/src/Debug/Console/InfoCommand.php +++ b/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;